Mavenを使用してWebプロジェクトを作成し、必要なすべてのライブラリを自動的にインポートするため、"maven-archetype-webpp"
その後、pom.xmlファイルでこのエラーが発生しました:
Description Resource Path Location Type Failure to transfer org.Apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 from http://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 org.Apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 from/to central (http://repo.maven.Apache.org/maven2): The operation was cancelled. pom.xml /SpringTuto line 1 Maven Configuration Problem
Mavenプロジェクトを更新しましたが、結果はありません!!
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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pre.example</groupId>
<artifactId>SpringTuto</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>SpringTuto 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>SpringTuto</finalName>
</build>
</project>
次の手順に従うだけです。
プロジェクトを右クリック-> Maven->チェックボックス「強制更新」をクリック->更新
プロジェクトを右クリックし、mavenにカーソルを合わせて[プロジェクトの更新]をクリックします。
私の場合、それはEclipseへのインポートの失敗でした。 Eclipseからプロジェクトを削除し(もちろん、ファイルシステムから削除せずに)、再インポートする必要がありました。その後、エラーはすぐになくなりました。