gpt4 book ai didi

使用 maven exec-maven-plugin “target” 文件夹生成的 Java 类未编译

转载 作者:行者123 更新时间:2023-12-01 19:23:49 25 4
gpt4 key购买 nike

我有一个 Maven 项目,它使用 exec-maven-plugin 将 java 类生成到目标/生成源中。在 mvn clean install 期间永远不会编译下面生成的 java 类。

           <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>prepare-package</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/foldername</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>add-sources</id>
<goals>
<goal>java</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<mainClass>mainclass</mainClass>
</configuration>
</execution>
</executions>
</plugin>

我必须使用 MOJO 吗?

最佳答案

使用build-helper-maven-plugin可以像下面这样配置:

<project>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>some directory</source>
...
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

关于使用 maven exec-maven-plugin “target” 文件夹生成的 Java 类未编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59330057/

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