我有一个使用exec-maven-plugin运行swagger-codegen的maven项目,它在子目录中生成一个新的maven项目。我想要的是,继续构建生成的项目的同一个maven进程。
将生成的项目目录声明为模块似乎不起作用,我认为因为maven首先处理所有pom.xml文件,然后开始构建(因此生成的项目在需要时尚不存在) )。
我想我可以从exec-maven-plugin再次调用一个新的maven进程(虽然我不确定是否很容易找到详细信息,例如使用的maven二进制文件的位置,以及目标是什么等) 。希望有人能提出更优雅的方法。
答案 0 :(得分:0)
您可以使用
下面是在这种情况下如何使用Exec插件的示例:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>build-module</id>
<phase>process-resources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>clean</argument>
<argument>install</argument>
</arguments>
<workingDirectory>${basedir}\module-name</workingDirectory>
</configuration>
</plugin>
如果您需要不同的依赖项来执行它,并且您不希望将它们作为项目的一部分添加,您也可以按照here所述定义它们,Exec插件将在执行期间使用插件依赖项。还要确保正确设置workingDirectory
以执行它。
虽然Invoker插件是为在Maven插件开发期间运行集成测试而定义的,但在这种情况下它也可以满足您的需要。下面是一个可能的例子:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.7</version>
<configuration>
<pom>${basedir}/module-dir/pom.xml</pom>
<streamLogs>true</streamLogs>
<failIfNoProject>true</failIfNoProject>
<goals>
<goal>clean</goal>
<goal>package</goal>
</goals>
</configuration>
<executions>
<execution>
<id>build-module</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.8.3</version>
</dependency>
</dependencies>
</plugin>
我还建议检查Invoker插件的run目标的其他选项。
在这两种方法中,您应该确保在生成阶段之后执行此插件,然后检查Maven phases流程(即,如果您在generate-sources
阶段生成项目,那么执行/构建此项目可能发生在process-resources
阶段。