我有一个多模块的项目,就像这个:
main-project/
module1/
module2/
sub-module1/
sub-module2/
sub-module3/
...
module3/
module4/
...
我需要在 Maven2中定义一组属性(这些属性依赖于我想要发布项目的环境)。
我不会使用 <properties>
,因为有很多属性..。
因此,我使用 Properties Maven2插件。
属性文件位于 main-project/
目录中。
我如何在 pom.xml 主目录中设置正确的目录,以便向任何子目录指定在哪里可以找到属性文件?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>???/env_${env}.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
如果我只设置 <file>env_${env}.properties</file>
,那么当 Maven2编译第一个模块时,它将找不到 main-project/env_dev.properties
文件。如果我设置 <file>../env_${env}.properties</file>
,那么在父级别或任何子模块级别都会引发错误..。