pom.xml错误怎么解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom.xml错误怎么解决相关的知识,希望对你有一定的参考价值。
你使用这个试试: jstl jstl 1.2 虽然不直接用jar包,但引于的地址必须是正确的了。 你多一个source的后缀,很有可能是你某个pom在去下载jar包的时候,并没有成功下载,或你的下载类型有问题。 参考技术A 哪里错了你得指出来才能帮你解答eclipse webapp中的pom.xml文件出错
我在pom.xml
文件中收到以下错误消息,有人请帮我解决这个问题。我在谷歌搜索解决方案尚未获得解决方案。
错误
Failure to transfer com.thoughtworks.xstream:xstream:pom:1.3.1 from https://repo.maven.apache.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 com.thoughtworks.xstream:xstream:pom:1.3.1 from/to
central (https://repo.maven.apache.org/maven2): The operation was cancelled.
pom.hml
<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.maven</groupId>
<artifactId>helloworld</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>helloworld Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>helloworld</finalName>
</build>
</project>
答案
我通过删除本地仓库中相应的下载工件目录失败来修复此问题。这样下次它会自动下载。
以上是关于pom.xml错误怎么解决的主要内容,如果未能解决你的问题,请参考以下文章
Eclipse创建Maven工程总是出现pom.xml报错怎么办
在pom.xml中的dependencies点击add怎么没有搜索到相关jar包