您好,匿名用户
随意问技术百科期待您的加入

maven nexus spring-data-jpa-examples导入报错

0 投票

问题描述:
spring-data-jpa-examples一个基于maven的项目 ,我用nexus管理构件,但是项目导入myeclipse的时候会提示下面的错误

我的想法:
系统提示的意思就是"maven-plugin:1.0.0.RELEASE"这个构件不能从nexus上下载,
随后我在http://repo.springsource.org/ 上找到了该构件,我想问通过怎样的配置可以解决上面的问题,下面有我的maven配置和MyEclipse提示的错误

1.maven配置
setting.xml中关于nexus的配置
------------------------------

  <mirrors>
    <mirror>  
      <!--This sends everything else to /public -->  
      <id>nexus</id>  
      <mirrorOf>*</mirrorOf>  
      <url>http://127.0.0.1:8089/nexus/content/groups/public</url>  
    </mirror> 
  </mirrors>


 <profiles>
    <profile>  
      <id>nexus</id>  
      <!--Enable snapshots for the built in central repo to direct -->  
      <!--all requests to nexus via the mirror -->  
      <repositories>  
        <repository>  
          <id>central</id>  
          <url>http://central</url>  
          <releases><enabled>true</enabled></releases>  
          <snapshots><enabled>true</enabled></snapshots>  
        </repository>  
      </repositories>  

      <pluginRepositories>  
        <pluginRepository>  
          <id>central</id>  
          <url>http://central</url>  
          <releases><enabled>true</enabled></releases>  
          <snapshots><enabled>true</enabled></snapshots>  
        </pluginRepository>  		
      </pluginRepositories>  
    </profile> 	
  </profiles>

 <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>

2.MyEclipse提示的错误:

Description	Resource	Path	Location	Type
Could not calculate build plan: Missing:
----------
1) com.springsource.bundlor:com.springsource.bundlor.maven:maven-plugin:1.0.0.RELEASE

  Try downloading the file manually from the project website.

  Then, install it using the command: 
      mvn install:install-file -DgroupId=com.springsource.bundlor -DartifactId=com.springsource.bundlor.maven -Dversion=1.0.0.RELEASE -Dpackaging=maven-plugin -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
      mvn deploy:deploy-file -DgroupId=com.springsource.bundlor -DartifactId=com.springsource.bundlor.maven -Dversion=1.0.0.RELEASE -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

----------
1 required artifact is missing.

for artifact: 
  com.springsource.bundlor:com.springsource.bundlor.maven:maven-plugin:1.0.0.RELEASE

from the specified remote repositories:
nexus (http://127.0.0.1:8089/nexus/content/groups/public, releases=true, snapshots=true)
spring-data-jpa-example		Unknown	Maven Problem
用户头像 提问 2012年 12月1日 @ Fiora 上等兵 (297 威望)
分享到:

你的回答

隐私保护: 您的邮箱仅用于发送系统通知。
请输入验证码:
    图片验证码看不清?
登录注册后不会被要求输入验证码。

提一个问题:

相关问题

0 投票
0 回复 41 阅读
用户头像 提问 2012年 12月1日 @ Nautilus 上等兵 (223 威望)
0 投票
1 回复 214 阅读
+3 投票
1 回复 824 阅读
用户头像 提问 2013年 1月16日 @ 切糕 上等兵 (151 威望)
0 投票
1 回复 32 阅读
用户头像 提问 2012年 12月1日 @ Mordekaiser 上等兵 (232 威望)
0 投票
0 回复 23 阅读
用户头像 提问 2013年 9月12日 @ Dr. Mundo 上等兵 (281 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...