2017-08-24 11 views
0

私はnetbeans build maven Webアプリケーションに依存関係をダウンロードしようとしています。 IDEを使用して依存関係を更新できませんでした。使用しようとしました。org.springframeworkのアーティファクト記述子の読み込みに失敗しました:sp​​ring-core:jar

Command trough cmd。
しかし、私はまだ同じエラーがあります。 enter image description here

助けてください。私はこれを数日間把握しようとしています。 (インターネット接続はかなり正常に動作しています。)
これが出力されているあなたに

EDIT
に感謝します。

C:\Users\Dilini\Documents\NetBeansProjects\NewSpring>mvn clean install 
[INFO] Scanning for projects... 
[INFO] 
[INFO] ------------------------------------------------------------------------ 
[INFO] Building NewSpring 1.0-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[WARNING] The POM for org.springframework:spring-core:jar:5.0.0.RC3 is missing, no dependency information available 
[WARNING] The POM for org.springframework:spring-beans:jar:5.0.0.RC3 is missing, no dependency information available 
[WARNING] The POM for org.springframework:spring-context:jar:5.0.0.RC3 is missing, no dependency information available 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 0.552 s 
[INFO] Finished at: 2017-08-24T15:24:58+05:30 
[INFO] Final Memory: 8M/155M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal on project NewSpring: Could not resolve dependencies for project com.dilini:NewSpring:war:1.0-SNAPSHOT: The following artifacts could not be resolved: org.springframework:spring-core:jar:5.0.0.RC3, org.springframework:spring-beans:jar:5.0.0.RC3, org.springframework:spring-context:jar:5.0.0.RC3: Failure to find org.springframework:spring-core:jar:5.0.0.RC3 in 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 -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException 

C:\Users\Dilini\Documents\NetBeansProjects\NewSpring> 
+0

メッセージが欠落しているJARファイルは、あなたが指しているリポジトリでは使用できないことを語っています。そのレポに行って確認することをおすすめします。あなたが求めているバージョンが正しくない可能性があります。 – duffymo

+0

出力を画像としてではなくテキストとして追加する – Jens

+0

なぜあなたはリリースされたスプリングバージョンではないRCを使用しますか – Jens

答えて

0

あなたのPOMファイルにこのレポを追加する必要があります。

<repositories> 
    <repository> 
    <id>repository.spring.milestone</id> 
    <name>Spring Milestone Repository</name> 
    <url>http://repo.spring.io/milestone</url> 
    </repository> 
</repositories> 
+0

私はそれが何であるか分かりますか?他の依存関係を維持する必要があります –

+0

あなたが使用しているspring-coreのバージョンはまだリリースされていません。つまり、候補リリース(RC' 5.0.0.RC3')です。それらはSpringリポジトリに保存されています。 – Sam

+0

ありがとうございます.. –

関連する問題