我正在使用exec-maven-plugin并且pom正在编译,但是当我编译项目时它似乎没有执行这个插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<configuration>
<executable>python</executable>
<workingDirectory>scripts/python/</workingDirectory>
<arguments>
<argument>webxmlgen.py</argument>
<argument>argument1</argument>
<argument>argument2</argument>
</arguments>
</configuration>
<id>generation</id>
<phase>generate</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
我忘了什么吗?我也不确定我必须使用的阶段和目标......
修改:
我删除了workingDirectory标记并将其直接放在参数中,现在它可以与phase generate-ressources一起使用,谢谢!
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<configuration>
<executable>python</executable>
<arguments>
<argument>scripts/python/webxmlgen.py</argument>
<argument>argument1</argument>
<argument>argument2</argument>
</arguments>
</configuration>
<id>generation</id>
<phase>generate-ressources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
答案 0 :(得分:1)
phase
告诉Maven何时执行它,goal
告诉它在达到阶段时在插件上调用哪个目标。
您的问题是没有generate
阶段。 Here is a list。请改为generate-resources
。