给出以下示例多模块项目:
其中parent是任何其他pom的父级,app的依赖关系为comp1。
通过发布发布:只要aggr文件夹在svn存储库(repository / trunk / aggr / parent.pom,...)中具有相同的结构,就可以准备/执行正常工作。
现在,当我想使用相同的项目但是使用svn:externals时,release-plugin不起作用,说明comp1:
Can't release project due to non released dependencies : parent:pom:2.0-SNAPSHOT
存储库结构就像
aggr文件夹使用指向模块中继的外部,因此签出的工作副本如上所示。
为什么Maven以不同的方式处理基于外部的模块,是否有办法克服这个问题?
编辑:svn:externals项目的pom-Files。与其他项目的pom-Files的唯一区别是scm标记。在其他非外部项目中,只有聚合器具有scm标记。
外部parent-pom.xml
<groupId>small.test</groupId>
<artifactId>parent</artifactId>
<version>2.0-SNAPSHOT</version>
<scm>
<connection>scm:svn:http://localhost/svn/small-test-ext/parent/trunk/</connection>
<developerConnection>scm:svn:http://localhost/svn/small-test-ext/parent/trunk/</developerConnection>
<url>http://localhost/svn/small-test-ext/parent/trunk/</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
</plugins>
外部aggr-pom.xml small.test 亲 2.0-SNAPSHOT
<groupId>small.test</groupId>
<artifactId>aggr</artifactId>
<version>1.0-SNAPSHOT</version>
<scm>
<connection>scm:svn:http://localhost/svn/small-test-ext/aggr/trunk/</connection>
<developerConnection>scm:svn:http://localhost/svn/small-test-ext/aggr/trunk/</developerConnection>
<url>http://localhost/svn/small-test-ext/aggr/trunk/</url>
</scm>
<modules>
<module>parent</module>
<module>comp1</module>
<module>comp2</module>
<module>app</module>
</modules>
外部app-pom.xml
<parent>
<groupId>small.test</groupId>
<artifactId>parent</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<groupId>small.test</groupId>
<version>3.0-SNAPSHOT</version>
<artifactId>app</artifactId>
<packaging>jar</packaging>
<scm>
<connection>scm:svn:http://localhost/svn/small-test-ext/app/trunk/</connection>
<developerConnection>scm:svn:http://localhost/svn/small-test-ext/app/trunk/</developerConnection>
<url>http://localhost/svn/small-test-ext/app/trunk/</url>
</scm>
<dependencies>
<dependency>
<groupId>small.test</groupId>
<artifactId>comp1</artifactId>
<version>4.0-SNAPSHOT</version>
</dependency>
由于 康拉德
答案 0 :(得分:2)
在当前项目中,您必须为每个项目运行mvn:release
,因为您在不同的svn存储库中有项目或模块。如果您只想运行一个mvn:release
,您的存储库应该是:
svn_repository: branches/
tags/
trunk/
parent
comp1
comp2
app
pom.xml