无法为 richfaces simpleapp 编译干净的 maven 生成的项目模板
这是我使用 RichFaces 和 Maven 的第一步。使用 Eclipse/Maven 生成项目模板后,我一直遇到错误。我将不胜感激任何解决此错误的帮助:
无法从以下位置传输 xpp3:xpp3_min:pom:1.1.4c http://repo1.maven.org/maven2 已缓存在本地存储库中, 直到更新间隔之后才会重新尝试解析 中央已失效或强制更新。
原始错误:无法传输工件 xpp3:xpp3_min:pom:1.1.4c 从/到中央(http://repo1.maven.org/maven2):操作是 取消。 pom.xml /RFproj1第1行Maven配置问题
我正在使用 Eclipse 3.7 和 Maven 3.0.3。项目名称是 RFproj1,我将其生成为: [Eclipse] 文件->新->其他-> Maven-> Maven 项目等。我还粘贴了 pom.xml 的开头,其中错误的图标粘在行 1 上。
<?xml version="1.0" encoding="UTF-8"?>
<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>ksz</groupId>
<artifactId>RFproj1</artifactId>
<name>RichFaces 4 Application</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
本地存储库有问题吗?我应该以某种方式清理它吗?或者我应该强制执行任何更新?
These are my first steps with RichFaces and Maven. I've stuck on the error after I generated a project template using Eclipse / Maven. I will appreciate any help resolving this error:
Failure to transfer xpp3:xpp3_min:pom:1.1.4c from
http://repo1.maven.org/maven2 was cached in the local repository,
resolution will not be reattempted until the update interval of
central has elapsed or updates are forced.Original error: Could not transfer artifact xpp3:xpp3_min:pom:1.1.4c
from/to central (http://repo1.maven.org/maven2): The operation was
cancelled. pom.xml /RFproj1 line 1 Maven Configuration Problem
I am using Eclipse 3.7 with Maven 3.0.3. The project name is RFproj1 and i generated it as:
[Eclipse] File-> New -> Other -> Maven -> Maven project etc. I am pasting also a beginning of the pom.xml, where the error's icon stick to the line 1.
<?xml version="1.0" encoding="UTF-8"?>
<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>ksz</groupId>
<artifactId>RFproj1</artifactId>
<name>RichFaces 4 Application</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
Is the problem with local repository? Should I clean it somehow? Or should I enforce any updates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除硬盘上的本地存储库并尝试第二次构建...最好通过 mvn clean package 在命令行上构建...
Remove your local repository on the hard drive and try to build a second time ...best on command line via mvn clean package....