genkins的報錯排查
[ERROR] /root/.jenkins/workspace/car/src/main/java/com/zhengxin/tool/code/Code.java:[20,64] diamond operator is not supported in -source 1.5 (use -source 7 or higher to enable diamond operator) [ERROR] /root/.jenkins/workspace/car/src/main/java/com/zhengxin/controller/WXController.java:[335,58] diamond
由於jenkins默認的jdk是1.5版本,所以編譯war包的時候使用的1.5
也許有人問,我沒有按裝jdk1.5,安裝的是1.8--------------------------------1.5是插件自帶的
Maven默認用的是JDK1.5去編譯
diamond運算符,指的是JDK1.7的一個新特性
List<String> list = new ArrayList<String>(); // 老版本寫法
List<String> list = new ArrayList<>(); // JDK1.7及以後的寫法
所以Maven默認使用JDK1.5去編譯肯定是不認識這個東西的,針對這種問題,本文提供三種解決方案:
Ⅰ :在項目pom.xml中加入下面的配置即可
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
Ⅱ:直接在pom.xml中配置Maven的編譯插件也是可以的,像下面這樣:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
Ⅲ:另外還有一種最終的解決方案,適用於idea下配置Maven的所有項目:
在配置的maven安裝包的setting.xml中的profiles標簽中加入以下標簽
<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項目默認JDK版本都是1.5版本的了。
---------------------
原文:https://blog.csdn.net/xsm666/article/details/80076253
genkins的報錯排查