web-dev-qa-db-ja.com

Pom.xmlファイルでJavaコンパイラのバージョンをどのように指定しますか?

私は、およそ2000行を超えるNetBeansのMavenコードを書きました。私がNetBeansでそれをコンパイルするとき、すべては問題ありません、しかし、私がコマンドラインでそれを実行したいのであれば、私はこれらのエラーを得るでしょう:

generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
        ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();

generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
        HashSet<Double> resid_List = new HashSet<Double>(Arrays.asList(resid_val));

generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
        List<Integer> ind_ovlpList = new ArrayList<Integer>(Arrays.asList(ind_ovlp));

generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
public class ColumnComparator implements Comparator<double[]> {

annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
@Override

Java 1.3.1、コンパイラエラー を使用しようとしましたが、エラーが増えました。私は他の投稿からpom.xmlを修正するべきだと思いましたが、私はどうしたらよいかわかりません。これが私のpom.xmlです。

<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>

  <groupId>com.mycompany</groupId>
  <artifactId>mavenmain</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>

   <name>mavenmain</name>
    <url>http://maven.Apache.org</url>

   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

   <dependencies>
     <dependency>
       <groupId>junit</groupId>
        <artifactId>junit</artifactId>
       <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
     <dependency>
        <groupId>gov.nist.math</groupId>
        <artifactId>jama</artifactId>
        <version>1.0.2</version>
     </dependency>
   </dependencies>
 </project>

あなたが私を助けることができればそれは素晴らしいでしょう。

239
MTT
<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <groupId>org.Apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>(whatever version is current)</version>
        <configuration>
          <!-- or whatever version you use -->
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
    [...]
  </build>
  [...]
</project>

Mavenコンパイラプラグインの設定ページを参照してください。

http://maven.Apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html

ああ、そして:Java 1.3.xを使わないでください、現在のバージョンはJava 1.7.xまたは1.8.xです

297

maven-compiler-plugin pom.xmlのプラグイン階層依存関係にすでに存在しています。有効なPOMをチェックインしてください。

手短に言うと、このようなプロパティを使うことができます。

<properties>
   <maven.compiler.source>1.8</maven.compiler.source>
   <maven.compiler.target>1.8</maven.compiler.target>
</properties>

私はmaven 3.2.5を使っています

340
leocborges

私はEclipseのネオン単純なmavenのJavaプロジェクトで同じ問題に直面しました

しかし、私はpom.xmlファイル内に以下の詳細を追加します

   <build>
        <plugins>
            <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>
                </configuration>
            </plugin>
        </plugins>
    </build>

プロジェクト> maven>プロジェクトの更新(チェックされた強制更新)を右クリックした後

プロジェクトのエラーを表示するようにしました

それが役立つことを願っています

サンスク

10
Vijay Gajera

一般的にsourceのバージョン(例えばjavac -source 1.8)だけを評価したくはありませんが、sourcetargetのバージョン(例えばjavac -source 1.8 -target 1.8)の両方を評価したいです。
Java 9からは、クロスコンパイルの互換性のために情報とより堅牢な方法の両方を伝達することができます(javac -release 9)。
javacコマンドをラップするMavenは、これらすべてのJVM標準オプションを伝えるための複数の方法を提供します。

JDKのバージョンを指定する方法

sourcetargetを指定するためにmaven-compiler-pluginまたはmaven.compiler.source/maven.compiler.targetプロパティを使用することは同等です。

<plugins>
    <plugin>    
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
</plugins>

そして

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

コンパイラー構成内の<source>および<target>エレメントは、定義されている場合はプロパティーmaven.compiler.sourceおよびmaven.compiler.targetを使用するため、 コンパイラー・プラグインのMaven資料 によれば同等です。

source

Javaコンパイラの-source引数。
デフォルト値は1.6です。
ユーザープロパティはmaven.compiler.sourceです。

target

Javaコンパイラの-target引数。
デフォルト値は1.6です。
ユーザープロパティはmaven.compiler.targetです。

sourcetargetのデフォルト値については、 mavenコンパイラの3.8.0以降、デフォルト値は1.5から1.6に変更されました に注意してください。

Maven-compiler-plugin 3.6からJavaのバージョンを指定する新しい方法があります

あなたは release引数 を使うことができます:

<plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.0</version>
    <configuration>
        <release>9</release>
    </configuration>
</plugin>

ユーザープロパティmaven.compiler.releaseだけを宣言することもできます。

<properties>
    <maven.compiler.release>9</maven.compiler.release>
</properties>

しかし、現時点では、最後のバージョンだけでは不十分です。デフォルトのmaven-compiler-pluginバージョンは、最近の十分なバージョンに依存していないためです。

Mavenのrelease引数は、release:a { 新しいJVM標準オプション を伝達します。これは、Java 9から渡すことができます。

特定のVMバージョン用の、サポートされ文書化された公開APIに対してコンパイルします。

この方法は、sourcetarget、およびbootstrap JVMオプションに同じバージョンを指定するための標準的な方法を提供します。
bootstrapを指定することはクロスコンパイルには良い習慣であり、クロスコンパイルをしなくても問題ありません。

JDKのバージョンを指定する最善の方法はどれですか?

Java 8以下の場合:

maven.compiler.source/maven.compiler.target properties またはmaven-compiler-pluginを使用する のどちらも、より良いとは言えません。 2つの方法は、同じプロパティと同じメカニズム、つまりMavenコアコンパイラプラグインに依存しているため、事実は変わりません。

コンパイラープラグインでJavaバージョン以外のプロパティや動作を指定する必要がない場合は、この方法を使用するとより簡潔になります。

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

Java 9から:

release引数(3番目のポイント)は、sourcetargetに同じバージョンを使用するかどうかを強く考慮する方法です。

10
davidxxx
<plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.3</version>
            <configuration>
                <fork>true</fork>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin> 
0
Sasidhar Reddy