Maven发布到Nexus常见问题集
Posted BasicLab基础架构实验室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven发布到Nexus常见问题集相关的知识,希望对你有一定的参考价值。
1.出现:Cannot deploy artifacts when Maven is in offline mode 错误
解决办法:
原因是intellij IDEA14 默认为offline模式,进入Settings,把Work offline的勾去除即可。
2.出现: Return code is: 401, ReasonPhrase: Unauthorized.
解决办法:
1.检查pom.xml、setting.xml 对应nexus账号密码是否错误。
2.检查pom.xml、setting.xml 对应url地址是否正确。
3.出现: Return code is: 400, ReasonPhrase: Repository does not allow updating assets: maven-releases.
解决办法:在nexus的maven-releases设置为Allow redeploy(可重复提交)即可
4.出现:Compilation failure: Compilation failure (编译失败)
解决办法:
因为jdk版本的升级导致一些api已经失效,解决的办法有很多,最好的办法是在pom.xml文件中加入如下配置(通过配置maven-compiler-plugin插件解决此问题):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<testSource>1.8</testSource>
<testTarget>1.8</testTarget>
<encoding>utf-8</encoding>
<compilerArguments>
<verbose />
<bootclasspath>$java.home/lib/rt.jar;$java.home/lib/jce.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
以上是关于Maven发布到Nexus常见问题集的主要内容,如果未能解决你的问题,请参考以下文章
从 jenkins/maven build 发布 SNAPSHOT 到 nexus