zoukankan      html  css  js  c++  java
  • 解决Dynamic Web Module 3.0 requires Java 1.6 or newer.问题

    在项目的pom.xml的<build></build>标签中增加:
    Xml代码  收藏代码
    1. <plugins>  
    2.     <plugin>  
    3.         <groupId>org.apache.maven.plugins</groupId>  
    4.         <artifactId>maven-compiler-plugin</artifactId>  
    5.         <version>2.3.2</version>  
    6.         <configuration>  
    7.             <source>1.6</source>  
    8.             <target>1.6</target>  
    9.         </configuration>  
    10.     </plugin>  
    11. </plugins>  

    保存,项目构建完毕后在项目目录上点右键。选择Maven->Update Project Configuration,问题解决。
查看全文
  • 相关阅读:
    Python动态展示遗传算法求解TSP旅行商问题
    MOEAD算法中均匀权向量的实现---Python
    HDU 5294 多校第一场1007题 最短路+最小割
    POJ 3261 Milk Patterns sa+二分
    HDU 4292 FOOD 2012 ACM/ICPC Asia Regional Chengdu Online
    CodeForces 201A Clear Symmetry
    POJ 1679 The Unique MST 确定MST是否唯一
    POJ 3268 Silver Cow Party 最短路 基础题
    POJ 2139 SIx Degrees of Cowvin Bacon 最短路 水題
    POJ2229 Sumsets 基礎DP
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10484376.html
  • Copyright © 2011-2022 走看看