maven多模块开发配置

一:maven的多模块开发

maven module 和 maven project的关系!多模块中, maven project是顶级的父maven项目, maven module是子maven项目(模块)。

1.新建多模块maven项目

资源地址:http://download.csdn.net/detail/changerzhuo_319/9728040


2. 在父pom中配置每个模块都需要的jar包等其他配置信息

jar:能直接被子项目继承的jar配置

  
  
    
      junit
      junit
      3.8.1
    
  


jar:不能直接被子项目继承, 需要在子pom中指定groupId,artifactId,不需要配置version


  
    
      
	maven.study
	demo.interface
	0.0.1-SNAPSHOT
      
   
  

  
  
  	
  		maven.study
                demo.interface
  	
  

3.在父pom中指定jdk编译版本, 保存后每个子项目都需要更新maven的项目(右键-->maven-->update object configuration  不同版本的eclipse可能不一样,多次尝试下)

  
	 
		 
		 
			org.apache.maven.plugins 
			maven-compiler-plugin 
			 
			1.7 
			1.7 
			 
		 
	
  







你可能感兴趣的:(maven)