有没有一种简单的方法可以找到一个多模块 Maven 项目的根,比如 Gradle 的 rootDir
?
背景:
我希望使用 maven- 依赖-插件将工件从我的多模块项目的所有子模块复制到相对于整个项目的根目录的目录中。
也就是说,我的布局看起来类似于这个,名称改变了:
to-deploy/
my-project/
module-a/
module-b/
more-modules-1/
module-c/
module-d/
more-modules-2/
module-e/
module-f/
...
我希望所有的工件都能从他们各自模块的目标目录中复制到 my-project/../to-deploy
,这样我就能
to-deploy/
module-a.jar
module-b.jar
module-c.jar
module-d.jar
module-e.jar
module-f.jar
my-project/
...
我可以在每个模块中使用一个相对路径,如下所示:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>../../to-deploy</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
但是我不想在 <outputDirectory>
元素中指定相对路径。
我喜欢像 ${reactor.root.directory}/../to-deploy
这样的东西,但是我找不到这样的东西。
另外,我希望有一些方法来继承这个 maven 依赖-plugin 配置,这样我就不必为每个模块指定它。
我还尝试从根 pom 继承一个自定义属性:
<properties>
<myproject.root>${basedir}</myproject.root>
</properties>
但是,当我尝试在模块 POM 中使用 ${myproject.root}
时,${basedir}
将解析为模块的基底。
另外,我发现 http://labs.consol.de/lang/de/blog/maven/project-root-path-in-a-maven-multi-module-project/建议每个开发人员和持续集成服务器应该在 profiles.xml 文件中配置根目录,但我不认为这是一个解决方案。
那么有没有一种简单的方法可以找到多模块项目的根呢?