這個Maven錯誤讓我完全陷入困境,所以我可以使用一些幫助。 我有一個聲明瞭一個在項目回購這樣一個項目:In-project Maven Repository導致依賴性錯誤
<parent>
<groupId>ca.gc.agr.common</groupId>
<artifactId>drydock-parent</artifactId>
<relativePath>../DryDockPOM/pom.xml</relativePath>
</parent>
<artifactId>CognosReportService</artifactId>
<packaging>jar</packaging>
<version>2.0</version>
<name>CognosReportService</name>
<!-- In Project repository -->
<repositories>
<repository>
<id>in-project</id>
<name>In Project Repo</name>
<url>file://${project.basedir}/libs</url>
</repository>
</repositories>
<dependencies>
... stuff ...
<dependency>
<groupId>cognos-sdk</groupId>
<artifactId>cognos-client</artifactId>
<version>8.4.1</version>
</dependency>
<dependency>
<groupId>cognos-sdk</groupId>
<artifactId>cognos-axis</artifactId>
<version>8.4.1</version>
</dependency>
... stuff ...
</dependencies>
存在使用這一個像這樣的另一個項目:
<parent>
<groupId>ca.gc.agr.common</groupId>
<artifactId>common-web-parent</artifactId>
<relativePath>../DryDockWebPOM/pom.xml</relativePath>
</parent>
<artifactId>CognosReportWeb</artifactId>
<packaging>jar</packaging>
<version>2.0</version>
<name>CognosReportWeb</name>
<dependencies>
... stuff ....
<dependency>
<groupId>ca.gc.agr.common</groupId>
<artifactId>CognosReportService</artifactId>
<version>[1.0,)</version>
</dependency>
... stuff ....
</dependencies>
如果我去到父項目,做從那裏一個mvn install
,一切正常。不過,如果我嘗試自己建立CognosReportWeb
,我得到這個:
[ERROR] Failed to execute goal on project CognosReportWeb: Could not resolve dependencies for project ca.gc.agr.common:CognosReportWeb:jar:2.0:
Failed to collect dependencies for [ca.gc.agr.common:CognosReportService:jar:[1.0,) (compile),
ca.gc.agr.common:CommonWebJar:jar:[1.0,) (compile),
org.apache.tomcat:tomcat-servlet-api:jar:7.0.16 (provided),
javax.servlet.jsp:jsp-api:jar:2.2 (provided),
javax.el:el-api:jar:2.2 (provided),
org.glassfish.web:el-impl:jar:2.2 (provided),
com.sun.faces:jsf-api:jar:2.1.7 (compile),
com.sun.faces:jsf-impl:jar:2.1.7 (compile),
org.apache.myfaces.tomahawk:tomahawk20:jar:1.1.10 (compile),
org.richfaces:richfaces-bom:pom:4.2.0.Final (compile),
org.richfaces.ui:richfaces-components-ui:jar:4.2.0.Final (compile),
org.richfaces.core:richfaces-core-impl:jar:4.2.0.Final (compile),
org.primefaces:primefaces:jar:5.0 (compile),
org.springframework:spring-web:jar:4.0.0.RELEASE (compile),
com.cybozu.labs:langdetect:jar:1.1-20120112 (compile),
org.apache.myfaces.test:myfaces-test20:jar:1.0.7 (test),
org.aspectj:aspectjweaver:jar:1.7.4 (compile),
org.springframework:spring-context:jar:4.0.0.RELEASE (compile),
org.springframework:spring-aspects:jar:4.0.0.RELEASE (compile),
org.springframework:spring-tx:jar:4.0.0.RELEASE (compile),
org.springframework:spring-test:jar:4.0.0.RELEASE (compile),
org.springframework:spring-orm:jar:4.0.0.RELEASE (compile),
org.springframework:spring-oxm:jar:4.0.0.RELEASE (compile),
org.springframework:spring-jdbc:jar:4.0.0.RELEASE (compile),
org.hibernate:hibernate-core:jar:4.1.7.Final (compile),
commons-io:commons-io:jar:1.3.2 (compile),
commons-lang:commons-lang:jar:2.4 (compile),
commons-beanutils:commons-beanutils:jar:1.8.3 (compile),
commons-validator:commons-validator:jar:1.3.1 (compile),
log4j:log4j:jar:1.2.17 (compile),
org.slf4j:slf4j-log4j12:jar:1.7.6 (compile),
junit:junit:jar:4.11 (compile),
junit-addons:junit-addons:jar:1.4 (compile),
com.googlecode.log4jdbc:log4jdbc:jar:1.2 (compile),
org.reflections:reflections:jar:0.9.9-RC1 (compile),
oro:oro:jar:2.0.8 (compile),
dbunit:dbunit:jar:2.1 (compile),
com.h2database:h2:jar:1.3.175 (compile)]:
Failed to read artifact descriptor for org.aspectj:aspectjweaver:jar:1.8.0.M1:
Could not transfer artifact org.aspectj:aspectjweaver:pom:1.8.0.M1 from/to in-project (file://${project.basedir}/libs):
Repository path /libs does not exist, and cannot be created. -> [Help 1]
乍一看,好像有與org.aspectj:aspectjweaver:pom:1.8.0.M1
一個問題,但我如果我註釋掉我自己的項目回購在CognosReportService
(並重新安裝)時,突然CognosReportWeb
開始工作。
我真的難住了。難道我做錯了什麼?
任何想法,將不勝感激!
使用額外的回購的原因是,我可以使用一些第三方的罐子作爲maven的依賴。我想不出另一種方式來確保人們可以在簽出源代碼後運行Maven構建,而無需手動將這些jar插入到本地repo中。 – 2014-10-18 05:28:36
@ValBlant [爲什麼提交Java jar文件到存儲庫是個壞主意](http://stackoverflow.com/questions/4649015/java-jar-files-into-a-repository-cvs-svn)。 – 2014-10-18 12:19:12