嗨请帮我解决下面这个问题我是java新手,我的项目中有POM.xml,即使我完成了下面提到的步骤,也会显示以下错误。
我尝试的步骤是
错误消息类似于
Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven- compiler-plugin:2.3.2:testCompile (execution: default-testCompile, phase: test-compile)
我的POM.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>csp</groupId>
<artifactId>CustomerFileTransfer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>CustomerFileTransferApp</name>
<dependencies>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
</dependencies>
</project>
请告诉我要做的事情..