Maven:-source 1.3中不支持泛型

问题

Maven作为项目构建工具。 使用Java泛型函数,在使用Maven进行构建时,会收到此错误消息

generics are not supported in -source 1.3 (use -source 5 or higher to enable generics)

您需要告诉Maven使用JDK 1.5显式编译源代码。 pom.xml文件中声明Maven编译器插件(maven-compiler-plugin),如下所示:

档案:pom.xml


  
   ...
  
  
    
       
           org.apache.maven.plugins
           maven-compiler-plugin
           2.3.1
           
               1.5
               1.5
           
       
    
  

翻译自: https://mkyong.com/maven/maven-generics-are-not-supported-in-source-1-3/

你可能感兴趣的:(Maven:-source 1.3中不支持泛型)