maven上传jar到私服

Posted skiwndhw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven上传jar到私服相关的知识,希望对你有一定的参考价值。

上传jar到nexus私服比较简单,不过不会常操作,经常会过一段时间用一回,因此很容易到用的时候又忘了。
      手动上传就是在nexus中选择一个hosted仓库,artifact upload,GAV的方式,选择一个jar文件添加进去,最后upload就可以了。
      手上有个snapshots类型的jar,nexus上的3rd party是release类型的仓库,不能上传snapshots jar。可nexus中当前的snapshots仓库并没有找到artifact upload这项。
      找了下,maven可以使用命令上传jar文件。在maven全部配置文件settings.xml中添加: 
<server>  
  <id>Releases</id>  
  <username>admin</username>  
  <password>admin123</password>  
</server>      
<server>  
  <id>Snapshots</id>  
  <username>admin</username>  
  <password>admin123</password>  
</server> 
      需上传的项目pom.xml文件中添加:
<distributionManagement>  
  <repository>  
    <id>Releases</id>  
    <url>http://xxx/nexus/content/repositories/releases</url>  
  </repository>  
  <snapshotRepository>  
    <id>Snapshots</id>  
    <url>http://xxx/nexus/content/repositories/ailk-snapshots/</url>  
  </snapshotRepository>  
</distributionManagement>
使用mvn deploy命令就可以上传jar包了。
 
其中写道的maven eclipse插件没有试,使用摘录如下,尝试了以后再来补充使用情况说明。
利用maven,导入eclipse,在maven的pom文件中添加:
<pluginManagement>
   <plugins>
    <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-eclipse-plugin</artifactId>
     <version>2.8</version>
     <configuration>
      <downloadSources>true</downloadSources>
     </configuration>
    </plugin>
   </plugins>
  </pluginManagement>
这样就可以下载jar的源文件,用mvn eclipse:eclipse,导入eclipse即可以查看源文件。

mvn deploy -Dmaven.test.skip=true可以忽略测试,测试失败会影响到无法上传的

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow


以上是关于maven上传jar到私服的主要内容,如果未能解决你的问题,请参考以下文章

Maven上传jar包到私服

批量上传 Jar 包到 Maven 私服的工具

maven上传jar包到nexus私服后的存放路径 以及 使用IDEA上传jar包的步骤

Maven : 将Jar安装到本地仓库和Jar上传到私服 转

maven私服仓库nexus,怎样手动上传jar

手动上传SNAPSHOT文件到Maven私服Nexus的方法