Maven构建必须运行python脚本来生成web.xml

时间:2013-11-06 15:14:07

标签: python maven exec-maven-plugin

我正在使用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>

1 个答案:

答案 0 :(得分:1)

phase告诉Maven何时执行它,goal告诉它在达到阶段时在插件上调用哪个目标。

您的问题是没有generate阶段。 Here is a list。请改为generate-resources