构建失败错误“maven-compiler-plugin:3.3.9或其中一个依赖项无法解析”

时间:2016-11-14 10:37:38

标签: eclipse maven

使用pom.xml文件创建新的java项目。当我运行命令mvn clean install时出现构建失败错误。

任何人都可以帮我解决这个问题。 enter image description here

我的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>com</groupId>
  <artifactId>tasapitesting</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>tasapitesting</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.10</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <wtpversion>1.8</wtpversion>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3.9</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    </project>

1 个答案:

答案 0 :(得分:0)

Maven Central似乎没有为maven-compiler-plugin构建3.3.9(参见here)。无论如何,3.3代已经很老了。除非你绝对肯定 使用这样一个旧版本,否则只需前进到一个实际存在的新版本,比如3.6.0,你应该没问题。