Maven使用JDK1.8来编译运行
程序员文章站
2022-06-05 13:47:27
...
1.方法一
打开\conf\setting.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>
2.方法二
还可以在pom中添加,这个只能保证在单个项目中有。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
推荐阅读
-
使用组策略来禁止程序运行的方法
-
Linux下安装使用sar工具来获取系统运行状态
-
IDEA中使用Maven模板创建Maven WebApp项目并使用Tomact来运行项目
-
使用NodePad++来编辑我们服务器的配置文件防止无法运行
-
使用组策略来禁止程序运行的方法
-
使用CMD命令编译和运行Java程序
-
Python中使用异常处理来判断运行的操作系统平台方法
-
C++ 实验二 NO.1_(3) 1:熟悉DEV环境,练习自己的第一个程序使用DEV集成环境来编辑,运行简单的数据输入和运算实验。(3)编写一个程序,要求:提示输入3个数;显示这3个数,求他们的平均值
-
Intellij IDEA如何使用Maven Tomcat Plugin运行web项目
-
使用maven-shade 打包apache cxf 为可运行包 出现异常Caused by: org.apache.cxf.BusException: