0 0

maven deploy5

我想发布一个jar到远程的私服上,命令如下:
mvn -e  deploy:deploy-file -DgroupId=com.planetj.taste   -DartifactId=taste   -Dversion=1.7-rc2   -Dpackaging=jar   -Dfile=/home/gaoyibo/tools/ubuntu\ tools/apache-maven-2.0.9/lib/taste.jar   -DrepositoryId=remote   -Durl=http://192.168.75.25/m2repo


但是报下面的错误:
Error deploying artifact: Failed to transfer file: http://192.168.75.25/m2repo/com/planetj/taste/taste/1.7-rc2/taste-1.7-rc2.jar. Return code is: 405
Caused by: org.apache.maven.artifact.deployer.ArtifactDeploymentException: Error deploying artifact: Failed to transfer file: http://192.168.75.25/m2repo/com/planetj/taste/taste/1.7-rc2/taste-1.7-rc2.jar. Return code is: 405


希望大家帮我看看,谢谢!!!!
问题补充:
<!--

Licensed to the Apache Software Foundation (ASF) under one

or more contributor license agreements.  See the NOTICE file

distributed with this work for additional information

regarding copyright ownership.  The ASF licenses this file

to you under the Apache License, Version 2.0 (the

"License"); you may not use this file except in compliance

with the License.  You may obtain a copy of the License at



    http://www.apache.org/licenses/LICENSE-2.0



Unless required by applicable law or agreed to in writing,

software distributed under the License is distributed on an

"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY

KIND, either express or implied.  See the License for the

specific language governing permissions and limitations

under the License.

-->



<!--

| This is the configuration file for Maven. It can be specified at two levels:

|

|  1. User Level. This settings.xml file provides configuration for a single user,

|                 and is normally provided in $HOME/.m2/settings.xml.

|

|                 NOTE: This location can be overridden with the system property:

|

|                 -Dorg.apache.maven.user-settings=/path/to/user/settings.xml

|

|  2. Global Level. This settings.xml file provides configuration for all maven

|                 users on a machine (assuming they're all using the same maven

|                 installation). It's normally provided in

|                 ${maven.home}/conf/settings.xml.

|

|                 NOTE: This location can be overridden with the system property:

|

|                 -Dorg.apache.maven.global-settings=/path/to/global/settings.xml

|

| The sections in this sample file are intended to give you a running start at

| getting the most out of your Maven installation. Where appropriate, the default

| values (values used when the setting is not specified) are provided.

|

|-->

<settings>

  <!-- localRepository

   | The path to the local repository maven will use to store artifacts.

   |

   | Default: ~/.m2/repository

<localRepository>~/.m2/repository</localRepository> 

  -->



  <!-- interactiveMode

   | This will determine whether maven prompts you when it needs input. If set to false,

   | maven will use a sensible default value, perhaps based on some other setting, for

   | the parameter in question.

   |

   | Default: true

  <interactiveMode>true</interactiveMode>

  -->



  <!-- offline

   | Determines whether maven should attempt to connect to the network when executing a build.

   | This will have an effect on artifact downloads, artifact deployment, and others.

   |

   | Default: false

  <offline>false</offline>

  -->



  <!-- proxies

   | This is a list of proxies which can be used on this machine to connect to the network.

   | Unless otherwise specified (by system property or command-line switch), the first proxy

   | specification in this list marked as active will be used.

   |-->

  <proxies>

    <!-- proxy

     | Specification for one proxy, to be used in connecting to the network.

     |

    <proxy>

      <id>optional</id>

      <active>true</active>

      <protocol>http</protocol>

      <username>proxyuser</username>

      <password>proxypass</password>

      <host>proxy.host.net</host>

      <port>80</port>

      <nonProxyHosts>local.net,some.host.com</nonProxyHosts>

    </proxy>

    -->

  </proxies>



  <!-- servers

   | This is a list of authentication profiles, keyed by the server-id used within the system.

   | Authentication profiles can be used whenever maven must make a connection to a remote server.

   |-->

  <servers>

    <!-- server

     | Specifies the authentication information to use when connecting to a particular server, identified by

     | a unique name within the system (referred to by the 'id' attribute below).

     |

     | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are

     |       used together.

     |

    <server>

      <id>deploymentRepo</id>

      <username>repouser</username>

      <password>repopwd</password>

    </server>

    -->

   

    <!-- Another sample, using keys to authenticate.

    <server>

      <id>siteServer</id>

      <privateKey>/path/to/private/key</privateKey>

      <passphrase>optional; leave empty if not used.</passphrase>

    </server>

  <server>

      <id>Local</id>
      <username>Peng</username>

      <password>ammeN1</password>

    </server>

  </servers>

    -->




  <!-- mirrors

   | This is a list of mirrors to be used in downloading artifacts from remote repositories.

   |

   | It works like this: a POM may declare a repository to use in resolving certain artifacts.

   | However, this repository may have problems with heavy traffic at times, so people have mirrored

   | it to several places.

   |

   | That repository definition will have a unique id, so we can create a mirror reference for that

   | repository, to be used as an alternate download site. The mirror site will be the preferred

   | server for that repository.

   |-->

  <mirrors>

    <!-- mirror

     | Specifies a repository mirror site to use instead of a given repository. The repository that

     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used

     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.

     |

    <mirror>

      <id>mirrorId</id>

      <mirrorOf>repositoryId</mirrorOf>

      <name>Human Readable Name for this Mirror.</name>

      <url>http://my.repository.com/repo/path</url>

    </mirror>

     -->

  </mirrors>

 

  <!-- profiles

   | This is a list of profiles which can be activated in a variety of ways, and which can modify

   | the build process. Profiles provided in the settings.xml are intended to provide local machine-

   | specific paths and repository locations which allow the build to work in the local environment.

   |

   | For example, if you have an integration testing plugin - like cactus - that needs to know where

   | your Tomcat instance is installed, you can provide a variable here such that the variable is

   | dereferenced during the build process to configure the cactus plugin.

   |

   | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles

   | section of this document (settings.xml) - will be discussed later. Another way essentially

   | relies on the detection of a system property, either matching a particular value for the property,

   | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a

   | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.

   | Finally, the list of active profiles can be specified directly from the command line.

   |

   | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact

   |       repositories, plugin repositories, and free-form properties to be used as configuration

   |       variables for plugins in the POM.

   |

   |-->

  <profiles>

    <!-- profile

     | Specifies a set of introductions to the build process, to be activated using one or more of the

     | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>

     | or the command line, profiles have to have an ID that is unique.

     |

     | An encouraged best practice for profile identification is to use a consistent naming convention

     | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.

     | This will make it more intuitive to understand what the set of introduced profiles is attempting

     | to accomplish, particularly when you only have a list of profile id's for debug.

     |

     | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.

    <profile>

      <id>jdk-1.4</id>



      <activation>

        <jdk>1.4</jdk>

      </activation>



      <repositories>

        <repository>

  <id>jdk14</id>

  <name>Repository for JDK 1.4 builds</name>

  <url>http://www.myhost.com/maven/jdk14</url>

  <layout>default</layout>

  <snapshotPolicy>always</snapshotPolicy>

</repository>

      </repositories>

    </profile>
<profile><repositories><repository><id>ComodoRepository</id><name>ComodoRepository</name><url>http://192.168.75.25/m2repo</url><layout>default</layout><snapshotPolicy>always</snapshotPolicy></repository></repositories></profile>



    -->
<profile><repositories><repository><id>Local</id><name>Shared repository</name><url>http://192.168.75.25/m2repo</url><layout>default</layout></repository></repositories></profile>

  

    <!--

     | Here is another profile, activated by the system property 'target-env' with a value of 'dev',

     | which provides a specific path to the Tomcat instance. To use this, your plugin configuration

     | might hypothetically look like:

     |

     | ...

     | <plugin>

     |   <groupId>org.myco.myplugins</groupId>

     |   <artifactId>myplugin</artifactId>

     |  

     |   <configuration>

     |     <tomcatLocation>${tomcatPath}</tomcatLocation>

     |   </configuration>

     | </plugin>

     | ...

     |

     | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to

     |       anything, you could just leave off the <value/> inside the activation-property.

     |

    <profile>

      <id>env-dev</id>



      <activation>

        <property>

  <name>target-env</name>

  <value>dev</value>

</property>

      </activation>



      <properties>

        <tomcatPath>/path/to/tomcat/instance</tomcatPath>

      </properties>

    </profile>

    -->

  </profiles>



  <!-- activeProfiles

   | List of profiles that are active for all builds.

   |

  <activeProfiles>

    <activeProfile>alwaysActiveProfile</activeProfile>

    <activeProfile>anotherAlwaysActiveProfile</activeProfile>

  </activeProfiles>

  -->

</settings>

问题补充:
运行 mvn -X  deploy:deploy-file -DgroupId=com.fredck.FCKeditor   -DartifactId=FCKeditor   -Dversion=2.3   -Dpackaging=jar   -Dfile=/home/gaoyibo/tools/ubuntu\ tools/apache-maven-2.0.9/lib/FCKeditor-2.3.jar   -DrepositoryId=Local   -Durl=dav:http://192.168.75.25/m2repo/
报的错:
org.apache.maven.wagon.authorization.AuthorizationException: Access denied to: http://192.168.75.25/m2repo/com/fredck/FCKeditor/FCKeditor/2.3/FCKeditor-2.3.jar
然后,我在setting.xml文件里加入了
  <servers><server>

      <id>Local</id>
      <username>Peng</username>

      <password>ammeN1</password>

    </server>
</servers>
但是仍然不能访问到这个jar.
这个问题是不是说明jar已经成功上传到私服上了,但是由于文件权限不能访问????
2008年7月29日 15:17

1个答案 按时间排序 按投票排序

0 0

issue
mvn -X ...

另,能否看下setting.xml

2008年8月04日 13:50

相关推荐

    Maven deploy配置方法详解

    Maven deploy 配置方法详解 Maven deploy 是 Maven 生命周期的一部分,负责将项目的构件部署到远程仓库中,以便其他开发者和工程共享。下面将详细介绍 Maven deploy 配置方法。 pom.xml 配置 在 pom.xml 文件中,...

    hudson svn maven deploy BOM

    【标题】"hudson svn maven deploy BOM" 涉及到的IT知识点主要集中在持续集成工具Hudson、版本控制系统Subversion(SVN)、构建工具Maven以及部署插件和字符编码处理方面。以下是对这些关键概念的详细解释: 1. **...

    maven deploy时报错的解决方法

    标题提到的“maven deploy时报错”通常指的是在尝试使用Maven的`deploy`生命周期阶段将构建的工件上传到远程仓库时遇到的问题。描述中的日志显示了具体的错误信息,指出“repository element was not specified in ...

    maven-deploy-plugin-2.8.2.jar

    maven-deploy-plugin-2.8.2.jar

    Maven deploy到 nexus(csdn)————程序.pdf

    ### Maven部署到Nexus知识点详解 #### Maven与Nexus简介 - **Maven**:Apache Maven是一款基于项目对象模型(POM)的软件项目管理和理解工具。通过一系列标准生命周期构建项目,简化了项目的构建、依赖管理和文档...

    maven-deploy-plugin:Apache Maven Deploy插件

    这样,您可以确保您不会浪费时间在不属于Apache Maven范围的事情上。 假设您的问题不存在,请提交该问题的票证。 清楚地描述问题,包括在出现错误时重现的步骤。 确保填写已知问题的最早版本。 在GitHub上分叉存储...

    maven-deploy-plugin-2.7.jar

    maven-deploy-plugin-2.7.jar

    Maven自动升级版本号并打包上传的脚本

    同时,Maven插件如`versions-maven-plugin`和`maven-deploy-plugin`可以帮助我们完成版本升级和部署操作。 2. Maven的版本升级: 使用`versions-maven-plugin`插件,我们可以方便地更新项目及其依赖的版本号。例如...

    maven打包出错解决办法,亲测绝对可以!

    4. **部署私有库**:使用Maven的`deploy`命令,将内部项目打包并上传至Nexus的特定仓库。通过配置`&lt;distributionManagement&gt;`标签,指定发布目标。 5. **版本控制与权限管理**:Nexus支持对仓库的访问进行权限控制...

    maven 过滤文件夹打包

    在软件开发过程中,尤其是Java应用,Maven是一个广泛使用的构建工具,它可以帮助开发者自动化构建、测试和部署项目。"maven 过滤文件夹打包"这个主题涉及到的是如何利用Maven的资源过滤功能来实现针对不同运行环境的...

    maven_deploy.exe

    maven : deploy程序包用来快速上传第三方jar包提交成功后会自动生成deploy_config.txt保存url和仓库标识

    maven-deploy-plugin-2.4.jar

    maven-deploy-plugin-2.4.jar

    maven-deploy-plugin-2.0.jar

    maven-deploy-plugin-2.0.jar

    maven-deploy-plugin-2.5.jar

    maven-deploy-plugin-2.5.jar

    Maven常用插件整理.docx

    7. Maven Deploy Plugin Deploy Plugin用于部署最终的构建产物到远程仓库,供其他项目使用。 8. Maven Site Plugin Site Plugin生成项目的站点文档,包括报告、项目信息和团队信息等。 9. Maven Dependency Plugin...

    demo-maven-deploy

    Demo-Maven-部署

    maven代码自动将本地仓库中的包上传到maven私服

    总之,通过正确配置Maven的`pom.xml`和`settings.xml`文件,以及执行`mvn deploy`命令,可以实现将本地仓库中的包自动上传到Maven私有仓库。这对于团队协作和代码管理非常有用,确保所有成员都能访问到最新的内部...

    基于Nexus搭建Maven私服详解(可用于生产环境)

    提供了基于Nexus搭建Maven私服所需要的一切资源和个人经验,搭建后可maven deploy 上传自己的jar包。别人如何在自己的maven项目中引用我将单独再上传一份。

    maven3.1.0安装包

    5. **生命周期与构建阶段**:Maven 提供了 clean、default 和 site 三大生命周期,每个生命周期包含多个构建阶段,如 compile、test、install 和 deploy。 ** Maven 插件 ** Maven 插件是 Maven 功能的重要扩展,...

    maven-deploy-plugin-2.7-11.el7.noarch.rpm

    官方离线安装包,测试可用。请使用rpm -ivh [rpm完整包名] 进行安装

Global site tag (gtag.js) - Google Analytics