pom.xml does not exist (maven项目父模块无法识别子模块pom)

父模块无法读取子模块pom,

     		
		sorl-util
		page-interface
		page-service		
		search-interface
		search-service
		search-web
	 

[ERROR] Some problems were encountered while processing the POMs:
[ERROR] Child module E:\mysoftware\eclipse-myworkspace9\parent\sorl-util of E:\mysoftware\eclipse-myworkspace9\parent\pom.xml does not exist @
[ERROR] Child module E:\mysoftware\eclipse-myworkspace9\parent\page-interface of E:\mysoftware\eclipse-myworkspace9\parent\pom.xml does not exist @
[ERROR] Child module E:\mysoftware\eclipse-myworkspace9\parent\search-interface of E:\mysoftware\eclipse-myworkspace9-parent\pom.xml does not exist @
导入依赖名书写正确就是无法找到错误 ,在网上搜了很久,终于找到了解决办法:
解决方案是在modules标签外面包装一层分析器 即:

  
        
             		
		        sorl-util
		        page-interface
		        page-service		
		        search-interface
		        search-service
		        search-web
	          
     
 

添加后重新install,问题解决.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

你可能感兴趣的:(日常BUG,技术知识点)