eclipse中的Maven cofiguration错误 - git项目

时间:2017-06-13 16:28:40

标签: java eclipse maven

enter image description here

当我尝试使用Maven时,Eclipse中会出现此错误

  

未能转移commons-lang:commons-lang:pom:2.1 from   https://repo.maven.apache.org/maven2被缓存在当地   存储库,在更新之前不会重新尝试解析   中心间隔已经过去或强制更新。

     

原始错误:   无法转移神器公共场所-lang:commons-lang:pom:2.1 from / to   central repo.maven.apache.org pom.xml / test line 1 Maven   配置问题

1 个答案:

答案 0 :(得分:0)

您可以在<plugin>标记中添加多个<plugins>,示例如下所示: -

   <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>

      <plugin>
        <inherited>true</inherited>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>

        <configuration>
          <updateReleaseInfo>true</updateReleaseInfo>
        </configuration>
      </plugin>
   </plugins>