我继承了一个只能在 Java 1.8 中编译和运行的应用程序。因为我不想让 Java 1.8 成为我机器上的主要 jvm,所以我觉得管理它的最佳方法是通过 Maven 工具链。配置 maven-compiler-plugin 非常简单,但我还想添加通过 Maven 执行服务的功能,以便利用我为 1.8 配置的工具链。
挑战在于我似乎无法让 exec-maven-plugin 使用文档中的工具链。根据文档,我认为 exec-maven-plugin 会根据需要使用 maven-toolchains-plugin。但是,为了exec:exec
使用正确的工具链,我必须使用:
mvn toolchains:toolchain exec:exec
这可行,但文档让我认为工具链将自动配置,而无需我执行toolchains:toolchain
目标。
pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>1.8</version>
</jdk>
</toolchains>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath></classpath>
<argument>com.my.Main</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
工具链.xml
<?xml version="1.0" encoding="UTF8"?>
<toolchains>
<toolchain>
<type>jdk</type>
<provides>
<id>1.8</id>
<version>1.8</version>
</provides>
<configuration>
<jdkHome>/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home</jdkHome>
</configuration>
</toolchain>
</toolchains>
附加说明:我还尝试将 exec-maven-plugin 配置为exec:java
使用以下配置运行:
<configuration>
<mainClass>com.my.Main</mainClass>
</configuration>
但是,这不起作用,即使使用mvn toolchains:toolchain exec:java
.
有没有办法配置它,以便我只需要运行mvn exec:exec
,或者mvn exec:java
?