gpt4 book ai didi

java - maven-exec-plugin 仅执行第一次执行

转载 作者:太空宇宙 更新时间:2023-11-04 06:57:18 26 4
gpt4 key购买 nike

我需要在 Maven 构建阶段执行多个 Java 类,但插件只执行第一次执行时的类

Pom:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>first</id>
<goals>
<goal>java</goal>
</goals>
<phase>test-compile</phase>
<configuration>
<mainClass>com.myPackage.AssignTest</mainClass>
</configuration>
</execution>
<execution>
<id>second</id>
<goals>
<goal>java</goal>
</goals>
<phase>test-compile</phase>
<configuration>
<mainClass>com.myPackage.CompareTest</mainClass>
</configuration>
</execution>
</executions>
</plugin>

有人知道哪里出错了吗?

最佳答案

万一有人想要这个问题的答案。通过实验,我发现 java 目标不支持多次执行,但 exec 目标支持。所以只需将java转换为exec

下面是如何使用 exec 目标运行上述代码的示例。

            <executions>
<execution>
<id>execution-one</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-cp</argument>
<classpath/>
<argument>com.myPackage.AssignTest</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>execution-two</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-cp</argument>
<classpath/>
<argument>com.myPackage.CompareTest</argument>
</arguments>
</configuration>
</execution>
</executions>

如果您想要运行的类驻留在实际代码中,您可能需要将 exec 目标绑定(bind)到 compile 之后的阶段。否则,它们将简单地从项目依赖项中获取。

关于java - maven-exec-plugin 仅执行第一次执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22562558/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com