healsh
2018-09-06 17:42
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project order: Compilation failure
[ERROR] Failure executing javac, but could not parse the error:
[ERROR] 错误: 不再支持源选项 1.5。请使用 1.6 或更高版本。
[ERROR] 错误: 不再支持目标选项 1.5。请使用 1.6 或更高版本。
用的1.8。。。
pom.xml文件中增加jdk的设置
<properties>内增加
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
尝试几次后成了。。刚开始直接引用1.8的怎么都不成。。
用Jenkins自动化搭建测试环境
37385 学习 · 236 问题
相似问题