linugb118--java space

Java

mvn 打包问题2

调试maven时候,报错
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project ep-easyui-webapp: Could not resolve de
pendencies for project ep-easyui-webapp:ep-easyui-webapp:war:1.0-SNAPSHOT: The f
ollowing artifacts could not be resolved: javax.persistence:ejb:jar:3.0-public_r
eview, maven-plugins:maven-cobertura-plugin:plugin:1.3, maven-plugins:maven-find
bugs-plugin:plugin:1.3.1, persistence:persistence:jar:1: Failure to find javax.p
ersistence:ejb:jar:3.0-public_review in http://localhost:8081/nexus/content/grou
ps/EpPublic/ was cached in the local repository, resolution will not be reattemp
ted until the update interval of EpPublic has elapsed or updates are forced -> [
Help 1]
我在pom.xml 文件中添加
<dependency>
  <groupId>javax.persistence</groupId>
  <artifactId>ejb</artifactId>
  <version>3.0-public_review</version>
</dependency>
仍然抱这个错,解决方法
1) Manually install this artifact into your local repo cache
2) Add an excludes and a corresponding dependency so you get a proper artifact
3) Stop depending on outdated Hibernate artifacts, I'd suggest
upgrading to this one:
http://repo2.maven.org/maven2/org/hibernate/hibernate-annotations/3.4.0.GA/
改成<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.4.0.GA</version>
</dependency>
同时把
<dependency>
  <groupId>javax.persistence</groupId>
  <artifactId>ejb</artifactId>
  <version>3.0-public_review</version>
</dependency>
去掉

posted on 2012-05-09 10:44 linugb118 阅读(609) 评论(1)  编辑  收藏

Feedback

# re: mvn 打包问题2 2012-05-09 15:24 linugb118

还有一个很奇怪的问题如果,配的地址是
<url>http://1localhost:8081/nexus/content/groups/EpPublic/</url>

下载会失败的
需要改为
<url>http://127.0.0.1:8081/nexus/content/groups/EpPublic/</url>  回复  更多评论   



只有注册用户登录后才能发表评论。


网站导航:
 

My Links

Blog Stats

常用链接

留言簿(1)

随笔档案

搜索

最新评论

阅读排行榜

评论排行榜