Multiple antrun tasks in maven

前端 未结 1 1669
有刺的猬
有刺的猬 2020-12-08 07:35

How would you execute ant tasks at different phases in a maven build cycle?

相关标签:
1条回答
  • 2020-12-08 08:31

    I used this in the build/plugins section

    <plugin>
    
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
    
            <execution>
                <id>clean</id>
                <phase>clean</phase>
                <configuration>
                    <tasks>
                        <echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>clean"/>
                    </tasks>
                </configuration>
                <goals>
                    <goal>run</goal>
                </goals>
            </execution>
    
            <execution>
                <id>compile</id>
                <phase>compile</phase>
                <configuration>
                    <tasks>
                        <echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>compile"/>
                    </tasks>
                </configuration>
                <goals>
                    <goal>run</goal>
                </goals>
            </execution>
    
            <execution>
                <id>package</id>
                <phase>package</phase>
                <configuration>
                    <tasks>
                        <echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>package"/>
                    </tasks>
                </configuration>
                <goals>
                    <goal>run</goal>
                </goals>
            </execution>
    
        </executions>
    
    </plugin>
    
    0 讨论(0)
提交回复
热议问题