2013-09-27 144 views
1

我正在使用spring和maven创建一个新项目,我正在使用spring源工具。我创建了spring web maven项目。作为创建的pom.xml如下Spring-Maven项目构建错误

<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>org.springframework.samples.service.service</groupId> 
    <artifactId>SpringWeb</artifactId> 
    <version>0.0.1-SNAPSHOT</version> 

<other part is removed> 

日食显示红色标记在0.0.xsd“>项目标签。 同时建立项目日食给出错误如下

Errors occurred during the build. 
Errors running builder 'Maven Project Builder' on project 'SpringWeb'. 
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 
Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 
Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 

我没有得到什么错误是否pom.xml文件配置是否正确我在互联网上检查配置是否正确

+0

检查此帖:http://stackoverflow.com/questions/14065872/error-while-loading-maven-project-into-eclipse – tbsalling

回答

1

它的信息很少你至少可以很好地在你的pom.xml中看到你的maven资源插件配置

但是总的来说,它可能是你使用了一些代理,并且在下载插件jar的时候,我收到了HTML格式的HTTP错误响应,它在您的回购站中保存为jar。

尝试手动从repo中删除jar并再次运行构建。