maven配置文件激活基于几个文件的存在

时间:2012-06-21 08:51:34

标签: maven

我想基于几个文件的存在来激活配置文件。在以下示例中,如果文件my.markeranother.marker都存在,我希望激活配置文件。

    <activation>
        <file>
            <exists>${basedir}/my.marker</exists>
            <exists>${basedir}/another.marker</exists>
        </file>
    </activation>

它不起作用,因为它对模式无效。有没有办法在不使用命令行属性的情况下做这样的事情?

3 个答案:

答案 0 :(得分:2)

实际上,即使在Maven 3.2.2中解决了MNG-4565,仍然无法检查是否存在多个文件。这是因为POM模型不允许多个file或多个exists元素(https://issues.apache.org/jira/browse/MNG-5909)。即使将existsmissing混合在一个file元素中也不起作用(因为如果exists元素存在,则仅考虑它并且同为missing元素将被忽略,https://issues.apache.org/jira/browse/MNG-5910

答案 1 :(得分:0)

很遗憾你现在不能这样做。有一个ticket可以通过使用多个激活条件来解决您的情况,但它仍然没有得到解决。

编辑:Maven存在问题,所以你不能这样做。但是现在,从3.2.2版本开始,它应该使用多个激活条件。

感谢Nicholas Daley指出这一点。

答案 2 :(得分:0)

虽然不能解决您的问题,但只有在使用maven enforcer plugin存在两个文件时才能确保成功运行配置文件。

例如,除非requiresTwoFilesmvn -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>
...