Maven之 ArtifactDescriptorException

在建模块分级的时候父project报如下问题:

写道
ArtifactDescriptorException: Failed to read artifact descriptor for。。。

解决方式:

父pom中加入:

<dependency>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-resources-plugin</artifactId>
	<version>2.4.3</version>
</dependency>

 

你可能感兴趣的:(exception)