码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse maven工程错误总汇

时间:2017-05-12 13:15:03      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:ref   class   source   UI   资料   1.7   conf   eclips   ons   

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工程错误总汇

标签:ref   class   source   UI   资料   1.7   conf   eclips   ons   

原文地址:http://www.cnblogs.com/GIScore/p/6844813.html

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