在maven中使用子配置文件时是否正在执行父默认插件?

时间:2016-05-23 11:00:00

标签: maven maven-clean-plugin

我收到以下错误。是因为 install_path 未设置?如果是这样,是否意味着在使用配置文件时,默认插件没有被执行(设置 install_path 的插件?)

执行

mvn clean install site -Pfull

错误

  

无法执行目标   org.apache.maven.plugins:Maven的清理插件:2.5:清理   项目bo-full上的(clean-deploy-folder):缺少基本目录   文件集:null(包含:[],排除:[])

<project>
    <plugins>
        <plugin>
            <!-- Workaround maven not being able to set a property conditionally based on environment variable -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.8</version>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <exportAntProperties>true</exportAntProperties>
                        <target>
                            <property environment="env"/>
                            <condition property="install.path" value="${env.SERVER_HOME}" else="C:\MY_SERVER">
                                <isset property="env.SERVER_HOME" />
                            </condition>
                            <echo message="${install.path}"/>
                        </target>
                    </configuration>
                </execution>
            </executions>
        </plugin>
...

儿童

<project>
    <profiles>
        <profile>
            <id>full</id>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-clean-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>clean-deploy-folder</id>
                                <phase>pre-site</phase>
                                <goals>
                                    <goal>clean</goal>
                                </goals>
                                <configuration>
                                    <excludeDefaultDirectories>true</excludeDefaultDirectories>
                                    <filesets>
                                        <fileset>
                                            <directory>${install.path}</directory>
                                        </fileset>
                                    </filesets>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
...

1 个答案:

答案 0 :(得分:0)

1)即使使用配置文件,也应执行默认插件。请通过以下构建日志验证这是否发生 - 即使插件本身没有记录任何内容,maven也会记录每个插件执行。

2)您应该在与创建属性的执行相同的Maven项目/模块中保持清理执行。一个原因是您的子模块可以单独构建(它将使用本地/远程存储库中的父pom.xml,如果可用)。无论出于何种原因,财产也不可能在反应堆构建中正确传播。

3)如果问题确实是属性传播和antrun插件出错,您可以用Maven配置文件替换您的执行执行。它应该是这样的:

<properties>
  <!-- default value goes here: -->
  <install.path>C:\MY_SERVER</install.path>
</properties>

<profiles>
  <profile>
    <id>env</id>
    <activation>
      <property>
        <!-- activate this profile when property is specified: -->
        <name>env.SERVER_HOME</name>
      </property>
    </activation>
    <properties>
      <!-- override default property value: -->
      <install.path>${env.SERVER_HOME}</install.path>
    </properties>
  </profile>
</profiles>