eclipse maven工程错误总汇
Posted Geography爱好者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse maven工程错误总汇相关的知识,希望对你有一定的参考价值。
1、问题:
Target runtime Apache Tomcat v7.0 is not defined
解决方法:
right click on your project > Properties > Targeted Runtime > Click the version required 8.0
相关资料:
2、问题:
Maven项目中的Dynamic Web Module 3.0 requires Java 1.6 or newer
解决方法
在项目的pom.xml的 build 标签中加入:
<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins>
相关资料:
http://blog.csdn.net/liuxinghao/article/details/37088063
以上是关于eclipse maven工程错误总汇的主要内容,如果未能解决你的问题,请参考以下文章
eclipse导入maven工程missing artifact(实际是存在的)错误解决
eclipse导入maven工程missing artifact(实际是存在的)错误解决
Eclipse中将Maven工程转成SpringBoot工程