博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决“Dynamic Web Module 3.0 requires Java 1.6 or new
阅读量:5998 次
发布时间:2019-06-20

本文共 383 字,大约阅读时间需要 1 分钟。

hot3.png

 

在项目的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,问题解决。

转载于:https://my.oschina.net/fivewang/blog/688358

你可能感兴趣的文章
iostat
查看>>
nginx配置长连接
查看>>
files_exploit翻译脚本
查看>>
mysql按天数据统计
查看>>
《R in Action》读书笔记(3) 数据变换
查看>>
golang中发送http请求的几种常见情况
查看>>
字符串翻转
查看>>
《大四上总结》
查看>>
LeetCode—— Median of Two Sorted Arrays
查看>>
RAC_Oracle集群服务安装Grid Infrastructure(案例)
查看>>
【C#设计模式-抽象工厂模式】
查看>>
Visual Studio 2010 中CUDA 4.0的安装与配置
查看>>
VS Code 的使用readme文档
查看>>
Python 结巴分词(1)分词
查看>>
【cpp】Vector
查看>>
使用js禁止拖拽页面图片
查看>>
C# Note7:MVVM模式之数据绑定
查看>>
[转] Node.js使用MongoDB3.4+Access control is not enabled for the database解决方案
查看>>
linux系统禁止root用户通过ssh登录及ssh的访问控制
查看>>
刷新拜拜~gulp-livereload
查看>>