如何在pom.xml文件中指定Java编译器版本?

我在netbeans上编写了一个拥有大约2000多行的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,编译器错误 ,但我得到更多的错误。 我从其他post发现,我应该修改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> 

如果你能帮助我,那将是非常棒的。

 <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编译器插件的configuration页面:

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

maven-compiler-plugin已经存在于pom.xml中的插件层次依赖关系中。 检查Eclipse有效的POM。

简而言之,您可以使用像这样的属性:

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

我正在使用maven 3.2.5

我在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>更新项目(检查强制更新)

它决心我在项目上显示错误

希望这会有所帮助

Thansk

您很可能使用OpenJDK进行编译,其中javac默认由于某种原因是Java 1.3(其中Oracle Java默认为1.5)。

不幸的是,maven-compiler-plugin文档的默认值是1.5(没有说明为什么),所以人们通常不会在他们的pom.xml中明确地设置源和目标版本,直到他们需要在其他JVM下编译。

还要注意,如果你想独立于JDK,你可以告诉maven-compler-plugin使用eclipse编译器。 这使您可以在JRE上运行Maven。