我想基于几个文件的存在来激活配置文件。在以下示例中,如果文件my.marker
和another.marker
都存在,我希望激活配置文件。
<activation>
<file>
<exists>${basedir}/my.marker</exists>
<exists>${basedir}/another.marker</exists>
</file>
</activation>
它不起作用,因为它对模式无效。有没有办法在不使用命令行属性的情况下做这样的事情?
答案 0 :(得分:2)
实际上,即使在Maven 3.2.2中解决了MNG-4565,仍然无法检查是否存在多个文件。这是因为POM模型不允许多个file
或多个exists
元素(https://issues.apache.org/jira/browse/MNG-5909)。即使将exists
和missing
混合在一个file
元素中也不起作用(因为如果exists
元素存在,则仅考虑它并且同为missing
元素将被忽略,https://issues.apache.org/jira/browse/MNG-5910)
答案 1 :(得分:0)
很遗憾你现在不能这样做。有一个ticket可以通过使用多个激活条件来解决您的情况,但它仍然没有得到解决。
感谢Nicholas Daley指出这一点。
答案 2 :(得分:0)
虽然不能解决您的问题,但只有在使用maven enforcer plugin存在两个文件时才能确保成功运行配置文件。
例如,除非requiresTwoFiles
和mvn -P requiresTwoFiles compile
都存在,否则下面的代码段会因为使用个人资料src/main/java
(例如src/test/java
)运行的任何maven目标而失败。
...
<profile>
<id>requiresTwoFiles</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>enforce-files-exist</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireFilesExist>
<files>
<file>${basedir}/src/main/java</file>
<file>${basedir}/src/test/java</file>
</files>
</requireFilesExist>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
...