上传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包了。
参考这里:http://blog.csdn.net/bitty_ant/article/details/6924849
其中写道的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
原文地址:https://www.cnblogs.com/skiwndhw/p/10351999.html