使用maven聚合安装多个maven工程到本地仓库报错的解决方法:child module pom.xml does not exist

转自: https://stackoverflow.com/questions/26021141/maven-child-module-does-not-exist

1)在maven项目Parent中的 pom.xml 中 使用聚合安装多个 maven工程到本地仓库,pom配置如下:


  4.0.0
  com.atguigu.maven
  Parent
  0.0.1-SNAPSHOT
  pom
  
  
	  	../Hello
	  	../HelloFriend
	  	../OutFriends
	  	../MakeFriends
	  
	  
	  

右键该pom.xml 执行 mvn install , 报错信息如下:

[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Child module E:\bench-cluster\spring_in_action_eclipse\Parent\..\Hello of E:\bench-cluster\spring_in_action_eclipse\Parent\pom.xml does not exist @ 
[ERROR] Child module E:\bench-cluster\spring_in_action_eclipse\Parent\..\HelloFriend of E:\bench-cluster\spring_in_action_eclipse\Parent\pom.xml does not exist @ 

解决方法是:使用如下聚合配置

   
  
  	
	  
	  	../Hello
	  	../HelloFriend
	  	../OutFriends
	  	../MakeFriends
	  
  	
  
最后 pom.xml 右键 -> maven install 安装成功。 bingo。


你可能感兴趣的:(使用maven聚合安装多个maven工程到本地仓库报错的解决方法:child module pom.xml does not exist)