编程语言
首页 > 编程语言> > Maven Project Setting the -source and -target of the Java Compiler

Maven Project Setting the -source and -target of the Java Compiler

作者:互联网

<project>
  [...]
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  [...]
</project>

https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html

标签:...,Java,target,1.8,Project,source,maven,compiler
来源: https://www.cnblogs.com/zoomingxu/p/16139877.html