Maven 工具链未在构建中触发

Maven toolchain not getting triggered in build

我正在使用强制执行 java 8 的最新 maven 3.3.9,并尝试使用 java 7 maven 工具链在 java 7 中编译一个项目。

根据:The maven guide 我已经放入 maven 工具链插件来尝试告诉它使用 java 7 来编译应用程序。我的项目设置如下:

这是我的 parent pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>parent</groupId>
        <artifactId>build-base</artifactId>
        <version>1.0.17</version>
    </parent>

    <groupId>top_module</groupId>
    <artifactId>top_module</artifactId>
    <version>1</version>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>

    <modules>
        <module>submodule1</module>
        <module>submodule2</module>
    </modules>

    <properties>


        ...

    </properties>

    <dependencyManagement>
        <dependencies>

            <dependency>
                ...
            </dependency>
            <dependency>
                ...
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            ...
        </dependency>
    </dependencies>

    <build>
        <pluginManagement>
            <plugins>
                <!-- Ensure we compile as the correct jdk version -->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-toolchains-plugin</artifactId>
                    <version>1.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>toolchain</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <toolchains>
                            <jdk>
                                <version>1.7</version>
                                <vendor>sun</vendor>
                            </jdk>
                        </toolchains>
                    </configuration>
                </plugin>

                <!-- Maven WAR Plugin -->
                <plugin>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>${maven.war.plugin.version}</version>
                    <inherited>true</inherited>
                    <configuration>
                        <archiveClasses>true</archiveClasses>
                    </configuration>
                </plugin>

                <plugin>
                    <groupId>org.eclipse.m2e</groupId>
                    <artifactId>lifecycle-mapping</artifactId>
                    <version>1.0.0</version>
                    <configuration>
                        <lifecycleMappingMetadata>
                            <pluginExecutions>
                                <pluginExecution>
                                    <pluginExecutionFilter>
                                        <groupId>org.apache.maven.plugins</groupId>
                                        <artifactId>maven-enforcer-plugin</artifactId>
                                        <versionRange>[1.0.0,)</versionRange>
                                        <goals>
                                            <goal>enforce</goal>
                                        </goals>
                                    </pluginExecutionFilter>
                                    <action>
                                        <ignore />
                                    </action>
                                </pluginExecution>
                            </pluginExecutions>
                        </lifecycleMappingMetadata>
                    </configuration>
                </plugin>

            </plugins>
        </pluginManagement>
    </build>

    ...

</project>

构建没有 运行 任何与工具链相关的步骤,并且在 运行 宁 mvn clean install 时由于插件与 java 8 不兼容而失败,这显然意味着工具链没有得到 运行。我还需要 pom 中的其他内容吗?

这是我在 M2_HOME 中的 toolchains.xml 文件:

<?xml version="1.0" encoding="UTF8"?>
    <toolchains>
      <!-- JDK toolchains -->
      <toolchain>
        <type>jdk</type>
        <provides>
          <version>1.6</version>
          <vendor>sun</vendor>
        </provides>
        <configuration>
          <jdkHome>C:\Java\jdk1.6.0_45</jdkHome>
        </configuration>
      </toolchain>

            <toolchain>
        <type>jdk</type>
        <provides>
          <version>1.7</version>
          <vendor>sun</vendor>
        </provides>
        <configuration>
          <jdkHome>C:\Java\jdk1.7.0_79</jdkHome>
        </configuration>
      </toolchain>
    </toolchains>

如果你只想让 maven 一直使用 java 7 jdk,工具链插件可能比你需要的更多。设置 JAVA_HOME

可能就足够了

确保 JAVA_HOME 设置为 JDK 的位置,例如export JAVA_HOME=/usr/java/jdk1.7.* 并且 $JAVA_HOME/bin 在您的 PATH 环境变量中。 (或者如果来自 eclipse,将其设置为工作区默认值)

如果您只想从 1 个项目切换 jdk,您还可以使用 compilerVersion 标签 https://maven.apache.org/plugins/maven-compiler-plugin/examples/compile-using-different-jdk.html

问题与您在 pluginManagement 中定义了所有插件有关,但您需要这样定义它们:

<build>
  <pluginManagement>
    <plugins>
      <!-- Ensure we compile as the correct jdk version -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-toolchains-plugin</artifactId>
        <version>1.1</version>
      </plugin>

      <!-- Maven WAR Plugin -->
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>${maven.war.plugin.version}</version>
        <inherited>true</inherited>
        <configuration>
          <archiveClasses>true</archiveClasses>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.eclipse.m2e</groupId>
        <artifactId>lifecycle-mapping</artifactId>
        <version>1.0.0</version>
        <configuration>
          <lifecycleMappingMetadata>
            <pluginExecutions>
              <pluginExecution>
                <pluginExecutionFilter>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-enforcer-plugin</artifactId>
                  <versionRange>[1.0.0,)</versionRange>
                  <goals>
                    <goal>enforce</goal>
                  </goals>
                </pluginExecutionFilter>
                <action>
                  <ignore />
                </action>
              </pluginExecution>
            </pluginExecutions>
          </lifecycleMappingMetadata>
        </configuration>
      </plugin>

    </plugins>
  </pluginManagement>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-toolchains-plugin</artifactId>
      <executions>
        <execution>
          <goals>
            <goal>toolchain</goal>
          </goals>
          <configuration>
            <toolchains>
              <jdk>
                <version>1.7</version>
                <vendor>sun</vendor>
              </jdk>
            </toolchains>
          </configuration>
        </execution>
      </executions>
    </plugin>
  </plugins>


</build>

...

</project>

pluginManagement 旨在定义版本和默认配置,但不绑定到您需要为 maven-toolchains-plugin 执行的生命周期。在 pluginManagement 中,你应该定义所有你正在使用的版本的插件,这意味着 maven-resources-plugin、maven-install-plugin、maven-deploy-plugin、maven-enforcer-plugin 等。这可能是一个很好的公司候选人定义所有这些东西的父 pom。 您将采用最好的方式将 Maven 使用的 JDK 和您的代码使用的 JDK 分开。

除此之外 Maven 3.3.9 needs JDK 7 作为最小值并且 不是 JDK 8