无法计算构建计划 - Eclipse Maven

时间:2016-06-14 07:36:41

标签: java eclipse maven eclipse-plugin

当我尝试构建项目时。构建失败,并显示以下消息。

Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6

我看到了两个类似的问题并尝试了答案中提到的所有内容。

我尝试过的事情。

  1. settings.xml更改包括〜.m2 / repository / settings.xml中的代理 - 无法从工作中的eclipse下载任何内容。从IE> Internet选项>连接> Lan设置获得代理设置。当我使用命令提示符检查它是否正确时,telnet [host] [port]没有收到任何内容。

  2. 清理缓存,m2存储库和更新maven项目无法更新。

  3. 尝试手动下载maven插件并尝试将其放入.m2>存储库> apache> maven>插件> [各个插件文件夹]再次尝试重建同样的错误。

  4. 基本上一切都在工作场所被封锁。

    settings.xml文件内容为: -

    <settings>
        <proxies>
            <proxy>
                <id>proxy</id>
                <active>true</active>
                <protocol>HTTP</protocol>
                <host>proxy.asdf.com</host>
                <port>6050</port>
            </proxy>
        </proxies>
    </settings>
    

    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/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.asdfasdf.asdfsd</groupId>
        <artifactId>Service</artifactId>
        <packaging>war</packaging>
        <version>0.0.1-SNAPSHOT</version>
        <name>Service Maven Webapp</name>
        <url>http://maven.apache.org</url>
        <properties>
            <springframework.version>4.2.0.RELEASE</springframework.version>
            <jackson.version>2.5.3</jackson.version>
        </properties>
        <dependencies>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
                <version>4.2.0</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-tx</artifactId>
                <version>4.2.0/version> 
            </dependency>
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-databind</artifactId>
                <version>2.5.3</version>
            </dependency>
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>javax.servlet-api</artifactId>
                <version>3.1.0</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>jstl</artifactId>
                <version>1.2</version>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>3.8.1</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
        <build>
            <finalName>Service</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-clean-plugin</artifactId>
                    <version>2.5</version>
                </plugin>
    
            </plugins>
        </build>
    </project> 
    

    这是错误日志。 Error Log

    请帮忙。

1 个答案:

答案 0 :(得分:2)

您写道,您的settings.xml位于~.m2/repository。我认为那是错的。它应放在~/.m2

尝试逐步解决问题:

  1. 确保maven配置正确。settings.xml放在~/.m2中。 在命令行上,进入项目目录并调用mvn clean package

  2. 在第一步之后,处理eclipse

  3. <强>更新

    This answer提供有关通过SSL进行通信的信息。它显示了如何禁用证书检查:

    • -Dmaven.wagon.http.ssl.insecure=true - 允许对用户生成的证书使用宽松的SSL检查。
    • -Dmaven.wagon.http.ssl.allowall=true - 启用服务器的X.509证书与主机名的匹配。如果禁用,将使用类似检查的浏览器。
    • -Dmaven.wagon.http.ssl.ignore.validity.dates=true - 忽略证书日期的问题。