2

Spring Tool Suite(最新バージョン)を使用していますが、[新しいプロジェクト]-> [Mavenプロジェクト]を実行し、アーキタイプとしてmaven-archetype-webappを選択すると、pomファイルに次の奇妙なエラーが表示されます。

Failure to transfer org.codehaus.plexus:plexus-components:pom:1.1.18 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.codehaus.plexus:plexus-components:pom:1.1.18 from/to central (http://repo.maven.apache.org/maven2): No response received after 60000

また、これは非常に短くて単純な生成された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>Tset</groupId>
    <artifactId>Tset</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>Tset 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>Tset</finalName>
    </build>
</project>

私はこれらの初心者なので、明らかな何かが欠けているだけかもしれません。

ROOで生成された新しいプロジェクトからPOMファイルを取得することで解決しましたが、これが原因で、どのように解決できるのか非常に興味があります。

4

1 に答える 1

8

私の経験では、これは、maven によるダウンロードが破損した場合、または maven がこのアーティファクトをダウンロードしようとしたときにインターネット接続が利用できなかった場合、または何らかの理由で発生することがあります。

フォルダーを削除するなどして、.m2 ディレクトリ内のアーティファクトを削除してみてくださいC:\Users\yourname\.m2\repository\org\codehaus\plexus\plexus-components

于 2012-11-16T09:53:31.853 に答える