博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven 构建java项目,jdk版本问题
阅读量:6198 次
发布时间:2019-06-21

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

  hot3.png

使用maven构建Java项目,默认的 jdk 版本是1.5

详情见官方说明:

source String 2.0

The -source argument for the Java compiler.

Default value is: 1.5.

User property is: maven.compiler.source.

target String 2.1

The -target argument for the Java compiler.

Default value is: 1.5.

User property is: maven.compiler.target.

encoding String 2.0

The -encoding argument for the Java compiler.

Default value is: ${project.build.sourceEncoding}.
User property is: encoding.

如果要指定 jdk 版本,有两种方式

第一种方式:在maven的settings.xml中指定

          
          
JDK1.7
          
              
true
          
          
              
1.7
              
1.7
              
UTF-8
          
      
  
  

第二种方式:在工程中的pom文件中指定 

方式一:

2.32
org.apache.maven.plugins
maven-compiler-plugin
${maven_compiler_plugin_version}
1.7
1.7
UTF-8

方式二:

 
   
UTF-8
UTF-8
   
1.7
   
1.7

 

转载于:https://my.oschina.net/ranxi/blog/1623231

你可能感兴趣的文章
模拟 + 暴搜 --- Help Me with the Game
查看>>
点滴积累【C#】---序列化和反序列化
查看>>
为什么要使用“var me=this”这样的写法
查看>>
自然用户界面
查看>>
Android官方教程翻译(6)——添加ActionBar
查看>>
链接hdf5库出现错误的解决办法
查看>>
Objective-C多态:动态类型识别+动态绑定+动态加载
查看>>
C++基本数据类型
查看>>
window2003中,在IIS中,如何解决不能播放.FLV文件【转】
查看>>
在react native 中Async/Await的使用说明和方法
查看>>
Python中Requests库的用法
查看>>
箭头函数
查看>>
GPRS
查看>>
coffee.js
查看>>
MemPool
查看>>
专题6.互联网金融产品探讨
查看>>
CSS中强大的EM [转]
查看>>
换了核的edge浏览器,感觉要上天了
查看>>
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.33.10' (111) 解决方法
查看>>
JavaScript获取网页属性包括宽、高等
查看>>