码迷,mamicode.com
首页 > 其他好文 > 详细

maven 出现错误 -source 1.5 中不支持 diamond 运算符

时间:2019-01-28 15:15:20      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:解决方法   target   nbsp   span   error   plugins   bsp   targe   dia   

mvn clean package -DskipTests

出现如下错误:

-source 1.5 中不支持 diamond 运算符 
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)

解决方法1:pom.xml文件中添加

<plugins>
    <plugin> 
                 <groupId>org.apache.maven.plugins</groupId> 
                 <artifactId>maven-compiler-plugin</artifactId> 
                 <version>3.1</version> 
                 <configuration> 
                     <source>1.7</source> 
                     <target>1.7</target> 
                     <encoding>UTF-8</encoding> 
                 </configuration> 
     </plugin>
</plugins>

解决方法2:maven 的/conf/settings.xml添加

<profile>
      <id>jdk-1.7</id>
      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.7</jdk>
      </activation>
      <properties>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
        <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
      </properties>
</profile>

 

maven 出现错误 -source 1.5 中不支持 diamond 运算符

标签:解决方法   target   nbsp   span   error   plugins   bsp   targe   dia   

原文地址:https://www.cnblogs.com/felixzh/p/10330033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!