【问题标题】:Maven .m2 compiler errors in pom.xmlpom.xml 中的 Maven .m2 编译器错误
【发布时间】:2016-05-02 17:03:55
【问题描述】:

我需要编译我的项目,但它在我的 pom.xml 中失败了。第一个错误是:

生命周期配置未涵盖插件执行:org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default- 编译,阶段:编译)

第二个:

生命周期配置未涵盖插件执行:org.apache.maven.plugins:maven-compiler- plugin:2.3.2:testCompile(执行:default-testCompile,阶段:test-compile)

我在 settings.xml 中尝试了太多东西。

1) 实际上,mi maven=> 安装是嵌入指向我的 apache maven 2.2-1 的 settings.xml

2) Maven=> 用户设置。指向 apache maven 2.2.1 的正确 settings.xml。并且你删除了 m2/repository 中的所有文件夹。

3) 我试图让 maven 离线,因为我有 jar,所以我不需要使用存储库。

4) 我尝试更新=>maven prject=> 强制更新 snapshts/releases,离线且不离线。这两种情况都没有用。

5) 我无法在控制台或 pom.xml 中输入任何命令,因为我有这些编译错误。所以 maven install, clean, force 或者任何命令都是不可能的。

6) 我已经尝试在 pom.xml 中放入这些说控制台错误但也没用的插件。

7) 我的 settings.xml 代理标签是正确的

<proxies>
    <proxy>
        <active>?</active>
        <host>?</host>
        <port>?</port>

        <nonProxyHosts>?</nonProxyHosts>
    </proxy>
</proxies>

我不知道我还能做什么。请给我一个建议或信息。


<?xml version="1.0" encoding="UTF-8"?>
<project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
    xmlns="http://maven.apache.org/POM/4.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>

<!--    <parent> -->
<!--        <groupId>es.chx</groupId> -->
<!--        <artifactId>parent-pom</artifactId> -->
<!--        <version>2.0-SNAPSHOT</version> -->
<!--    </parent> -->

    <groupId>es.chx.gestionEnvios</groupId>
    <artifactId>gestionEnvios</artifactId>
    <version>1.0</version>
    <name>gestionEnvios</name>

    <properties>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <org.springframework-version>2.5</org.springframework-version>
    </properties>

    <dependencies>

        <dependency>
            <groupId>es.chx</groupId>
            <artifactId>arq-chx</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>

<!--        <dependency> -->
<!--            <groupId>es.chx.web</groupId> -->
<!--            <artifactId>loginLiferayFromApp</artifactId> -->
<!--            <version>1.0-SNAPSHOT</version> -->
<!--        </dependency> -->

<!--        <dependency> -->
<!--            <groupId>es.chx.web</groupId> -->
<!--            <artifactId>commonWeb</artifactId>  -->
<!--            <version>1.0-SNAPSHOT</version> -->
<!--        </dependency> -->

<!-- -->        <dependency> 
<!-- -->            <groupId>es.chx.intranet</groupId> 
<!--  -->           <artifactId>commonIntranet</artifactId>
<!-- -->            <version>1.0</version> 
<!-- -->        </dependency> 

        <dependency>
            <groupId>displaytag</groupId>
            <artifactId>displaytag-doc</artifactId>
            <version>1.2</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>displaytag</groupId>
            <artifactId>displaytag</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>displaytag</groupId>
            <artifactId>displaytag-export-poi</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>

        <dependency>
            <groupId>org.ajaxtags</groupId>
            <artifactId>ajaxtags</artifactId>
            <version>1.3-beta-rc7</version>
        </dependency>

        <dependency>
            <groupId>net.sf.json-lib</groupId>
            <artifactId>json-lib</artifactId>
            <version>2.2.3</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>net.sf.json-lib</groupId>
            <artifactId>json-lib-ext-spring</artifactId>
            <version>1.0.2</version>
        </dependency>

        <dependency>
            <groupId>es.chx.web</groupId>
            <artifactId>dwr</artifactId>
            <version>3.0</version>
        </dependency>

        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib</artifactId>
            <version>2.2.2</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
            <version>1</version>
        </dependency>

        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
            <version>1.0.0.GA</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
            <version>4.2.0.Final</version>
            <scope>compile</scope>
            <exclusions>
                <exclusion>
                    <artifactId>slf4j-api</artifactId>
                    <groupId>org.slf4j</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.14</version>
        </dependency>

        <dependency>
            <groupId>commons-validator</groupId>
            <artifactId>commons-validator</artifactId>
            <version>1.4.0</version>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
            <version>2.5</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>2.5</version>
        </dependency>

        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.2.2</version>
        </dependency>

        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc14</artifactId>
            <version>10.2.0.2.0</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.4</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>2.5</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.lowagie</groupId>
            <artifactId>itext</artifactId>
            <version>1.3</version>
        </dependency>

    </dependencies>

    <repositories>
        <repository>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <id>nexus-chrono</id>
            <url>http://192.168.241.125:8081/nexus/content/groups/public/</url>
        </repository>
        <repository>
            <id>apache.snapshots</id>
            <name>Maven Plugin Snapshots</name>
            <url>http://repository.apache.org/snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

    <build>
        <plugins>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <configuration></configuration>
            </plugin>

            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <additionalProjectnatures>
                        <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                    </additionalProjectnatures>
                    <additionalBuildcommands>
                        <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                    </additionalBuildcommands>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

以及我收到的错误:

生命周期配置未涵盖插件执行:org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default- 编译,阶段:编译)

生命周期配置未涵盖插件执行:org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile(执行:默认- testCompile,阶段:测试编译)

【问题讨论】:

  • 你能展示你项目的 pom.xml 吗?
  • 这些错误信息与 Eclipse (m2e Plugin) 中的使用有关。首先,您应该使用最新版本的插件,此外,您不应再使用 maven-eclipise-plugin ...只需将项目导入为 Maven 项目(并使用最新版本的 m2e 插件 1.6. 2.X)...

标签: java maven


【解决方案1】:

好吧,我认为我已经解决了。最后我安装了 STS(Spring Tools Suite),带有最新的 m2e 插件。错误不再存在。但是,我遇到了其他错误,但它们来自我的存储库的权限。所以...解决方案是在我的计算机中安装 STS 作为 IDE。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2017-06-26
    • 2014-09-24
    • 2015-11-25
    • 1970-01-01
    • 2016-10-03
    • 2023-03-26
    • 2012-10-28
    相关资源
    最近更新 更多