Maven 使用指定 Java 版本編譯專案

wenshi11019發表於2017-07-16

Maven 使用指定 Java 版本編譯專案

全域性配置

全域性配置是指在${MAVEN_HOME}confsettings.xml中進行配置,如果預設新建專案使用 jdk1.8構建,則在<profiles> </profiles>之間新增以下程式碼

    <!-- 全部 maven 專案預設使用 jdk1.8構建 -->
    <profile>
      <id>jdk-1.8</id>

      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.8</jdk>
      </activation>
      <properties>       
        <maven.compiler.source>1.8</maven.compiler.source>       
        <maven.compiler.target>1.8</maven.compiler.target>       
        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>       
      </properties>   

      <repositories>
        <repository>
          <id>jdk18</id>
          <name>Repository for JDK 1.8 builds</name>
          <url>http://www.myhost.com/maven/jdk18</url>
          <layout>default</layout>
          <snapshotPolicy>always</snapshotPolicy>
        </repository>
      </repositories>
    </profile>

區域性配置

區域性配置就是隻針對具體某個專案進行配置的。
在該專案的pom.xml檔案以下指定模組

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

新增maven-compiler-plugin外掛,其中3.6.1就是其版本:

            <!-- 使用Java8構建專案 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <testSource>1.8</testSource>
                    <testTarget>1.8</testTarget>
                </configuration>
            </plugin>

相關文章