美文网首页
maven jdk 版本配置

maven jdk 版本配置

作者: 吹洞箫饮酒杏花下 | 来源:发表于2018-03-19 16:17 被阅读0次

pom.xml 配置
在 <build> 节点添加如下配置
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

相关文章

网友评论

      本文标题:maven jdk 版本配置

      本文链接:https://www.haomeiwen.com/subject/ndepqftx.html