maven项目默认采用jdk1.8

本文介绍通过修改项目pom文件或settings.xml文件来设置Maven项目的JDK版本。通过pom文件设置,每个项目可独立指定版本,但每次新建项目需重复设置;通过settings.xml设置,只需一次配置,所有项目共享,但切换JDK版本需额外配置。
摘要由CSDN通过智能技术生成

两种方式:

  1. 在当前项目的pom中添加:
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.6.0</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
</build>

好处: 每个项目可以单独设置jdk版本,

缺点: 每次创建新的项目,都要从新设置jdk版本

  1. 在maven 的settings.xml文件中添加:
  <profile>    
       <id>jdk-1.8</id>    
       <activation>    
           <activeByDefault>true</activeByDefault>    
           <jdk>1.8</jdk>    
       </activation>    
       <properties>    
           <maven.compiler.source>1.8</maven.compiler.source>    
           <maven.compiler.target>1.8</maven.compiler.target>    
           <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>    
       </properties>    
   </profile>

好处: 只需要设置一次maven的配置文件, 只要使用这个maven配置文件的项目, 都不需要在设置jdk版本

缺点: 要想使用其他版本jdk,需要多个maven的 settings.xml配置文件

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值