Error:(17, 51) java: -source 1.5 中不支持 diamond 运算符 (请使用 -source 7 或更高版本以启用 diamond 运算符)
1、找到 file—>Settings—>java compile,将版本改为8或者更高,然后将你所在的模块设置为8或更高
2、找到 file—>project settings—>project ,将版本改为8或者更高
3、找到 file—>project settings—>modules ,将版本改为8或者更高
4、找到 file—>project settings—>SDKs ,将版本改为8或者更高
4、就是找到自己maven,将配置改为1.8或者更高
<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>