Maven confused about JRE been used

老子叫甜甜 提交于 2019-12-01 14:16:38

问题


I've created a project in eclipse and added maven dependencies. In Eclipse, it says that I am using JRE 1.5. Everything works fine in Eclipse, for instance, I can run my tests.

When I try to run mvn clean install from the terminal, it gives me the following error.

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

Its seems that Maven thinks I'm using JRE 1.3 and cannot recognize generics or for-each loops.

How can I:

  • Validate my assumption that maven is using the wrong version.
  • Get Maven to compile my project.

回答1:


Specify the correct version of your JRE in the Maven compiler plugin, by default your pom.xml file will inherit the compiler-plugin from the Maven super pom.xml which targets the 1.3 JRE.

     <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>    
        </plugins>
    </build>


来源:https://stackoverflow.com/questions/3371737/maven-confused-about-jre-been-used

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!