无法计算构建计划:插件org.apache.maven.plugins:maven-resources-plugin:2.5

时间:2014-12-11 16:36:09

标签: java javascript spring swing maven

嗨请帮我解决下面这个问题我是java新手,我的项目中有POM.xml,即使我完成了下面提到的步骤,也会显示以下错误。

我尝试的步骤是

  1. 从maven资源库中删除了所有缓存文件
  2. 通过Maven更新了项目,但仍然无法解决此问题
  3. 错误消息类似于

    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>
    

    请告诉我要做的事情..

0 个答案:

没有答案