maven配置jdk1.8环境
Posted 清晨的第一抹阳光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven配置jdk1.8环境相关的知识,希望对你有一定的参考价值。
1 <!-- 局部jdk配置,pom.xml中 --> 2 <build> 3 <plugins> 4 <plugin> 5 <groupId>org.apache.maven.plugins</groupId> 6 <artifactId>maven-compiler-plugin</artifactId> 7 <configuration> 8 <source>1.8</source> 9 <target>1.8</target> 10 </configuration> 11 </plugin> 12 </plugins> 13 </build>
1 <!-- 全局jdk配置,settings.xml --> 2 <profile> 3 <id>jdk18</id> 4 <activation> 5 <activeByDefault>true</activeByDefault> 6 <jdk>1.8</jdk> 7 </activation> 8 <properties> 9 <maven.compiler.source>1.8</maven.compiler.source> 10 <maven.compiler.target>1.8</maven.compiler.target> 11 <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> 12 </properties> 13 </profile>
以上是关于maven配置jdk1.8环境的主要内容,如果未能解决你的问题,请参考以下文章
springboot学习随笔:springboot环境构建:eclipse+maven+jdk1.8