Maven で子モジュールの Java バージョンを指定するにはどうすればよいですか: プロパティとコンパイラ プラグイン

Mary-Kate Olsen
リリース: 2024-11-15 09:52:03
オリジナル
495 人が閲覧しました

How do you specify Java version in Maven for child modules: properties vs. compiler plugin?

Specifying Java Version in Maven: Comparing Properties and Compiler Plugin

Introduction

When working with Maven, specifying the Java version for child modules in a multi-module project requires consideration. This article examines the differences between setting Java version using Java properties and the Maven compiler plugin.

Setting Java Version Using Properties

The java.version property in the section of the pom.xml is designed for use with Spring Boot and sets both the source and target Java versions:

<properties>
    <java.version>1.8</java.version>
</properties>
ログイン後にコピー

Setting Java Version Using Compiler Plugin

The Maven compiler plugin provides two options: specifying source and target versions or using the "release" argument.

  • Source and Target:
<plugins>
    <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
</plugins>
ログイン後にコピー

This is equivalent to using the following properties:

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>
ログイン後にコピー
  • Release:

From Maven 3.6 onwards, the release argument can be used to specify the Java version:

<properties>
    <maven.compiler.release>9</maven.compiler.release>
</properties>
ログイン後にコピー

Differences

  • Source and Target vs. Properties: They are functionally equivalent.
  • Release: In Maven 3.8 and above, it provides a standardized way to specify all three versions (source, target, and bootstrap) for Java 9 and later.
  • Spring Boot: java.version is only functional in Spring Boot projects.

Best Practice

For Java 8 and below:

  • Use either method to specify source and target.
  • If only source is specified, Maven may use a different target version based on the specified source.

For Java 9 and above:

  • Consider using the release argument to ensure consistent versions for source, target, and bootstrap.

fork, executable, and JAVA_HOME

  • If the JAVA_HOME JDK version is incompatible with the specified Java versions, specify fork="true" and executable in the compiler configuration.
  • It is not recommended for the source and target versions to exceed the JDK version pointed by JAVA_HOME, as the JDK cannot compile with a more recent specification.

以上がMaven で子モジュールの Java バージョンを指定するにはどうすればよいですか: プロパティとコンパイラ プラグインの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート