[bug] maven“1.5不支持diamond运算符,请使用source 7或更高版本以启用diamond运算符”

原因

  • maven打包默认采用jdk 1.5,无法识别<>

解决

在pom.xml中加入:

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

参考

https://www.cnblogs.com/tongxuping/p/7257623.html

posted @ 2020-06-17 00:15  cxc1357  阅读(93)  评论(0编辑  收藏  举报