pom.xml中的Maven .m2编译器错误

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

插件执行没有被生命周期配置覆盖:org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile(execution:default- compile,phase:compile)

第二:

生命周期配置没有涉及的插件执行:org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile(执行:default-testcompile,phase: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放在离线状态,因为我有罐子,所以我不需要使用仓库。

4)我试图更新=> maven prject =>强制更新快照/发布,脱机和不脱机。 这两种情况都没用。

5)我不能在控制台或pom.xml中输入任何命令,因为我有这些编译错误。 所以Maven安装,清理,强制或任何命令都是不可能的。

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- compile,phase:compile)

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


那么我认为我已经解决了它。 最后,我安装了STS(弹簧工具套件)和最新的m2e插件。 错误不再存在。 但是,我得到了其他错误,但他们来自我的存储库的权利。 所以......解决方案是将STS作为IDE安装在我的电脑中。

链接地址: http://www.djcxy.com/p/87283.html

上一篇: Maven .m2 compiler errors in pom.xml

下一篇: Maven Pom.xml issue