maven编译版本设置(全局设置、1.6、1.7、1.8配置)

maven编译版本设置

  • 全局设置
  • maven编译版本设置为1.6
  • maven编译版本设置为1.7
  • maven编译版本设置为1.8

全局设置

在${MAVEN_HOME}/conf/setting.xml中改变默认的编译版本,激活profile:

   
    jdk1.6
	   
	    true
		1.6   
    
       
        1.6
        1.6
        1.6   
       

maven编译版本设置为1.6


    org.apache.maven.plugins
    maven-compiler-plugin
    
        1.6
        1.6
        ${project.build.sourceEncoding}
    

maven编译版本设置为1.7


				org.apache.maven.plugins
				maven-compiler-plugin
				3.5.1  
				
					1.7
					1.7
					UTF-8
				
			

maven编译版本设置为1.8


		
			
				org.apache.maven.plugins
				maven-compiler-plugin
				3.8.0
				
					1.8
					1.8
					UTF-8
				
			
		
	

你可能感兴趣的:(maven)