Maven2 出现 Reason: Not a v4.0.0 POM. 原因之一

今天遇到这个问题,检查一下发现在compiler这个插件没有指定版本

 

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version><!-- 请指定该版本-->
<configuration>
	<source>1.7</source>
	<target>1.7</target>
</configuration>
 

默认情况下,选择了2.0.2,这个版本就会导致 Reason: Not a v4.0.0 POM.

 

 

 

你可能感兴趣的:(maven2)