maven的pom文件中指定编译的版本

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
。。。。
</plugins>
</build>

在pom.xml中没有声明的加入这个plugin时,是按照1.3来进行编译的。我们肯定不想用这么低的JDK版本

上一篇:Spark机器学习 Day1 机器学习概述


下一篇:Android驱动之 Linux Input子系统之TP——A/B(Slot)协议