2016-04-04 1 views
0

RapidClipseの新機能です。私はそれを実行しようとし、このエラーが発生しました。RapidClipseエラー

Errors occurred during the build. 
Errors running builder 'Maven Project Builder' on project 'test2'. 
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 

助けてください。

答えて

2

RapidClipseプロジェクトは、Mavenプラグインでビルドされたプロジェクトです。 'Maven Project Builder'自体には、いくつかの追加プラグイン、特に "maven-resources-plugin"が使用されています。

プラグインがローカルリポジトリに存在しない場合、mavenはリモートリポジトリ内でそのプラグインを検索し、自動的にローカルリポジトリにダウンロードしようとします(デフォルトの場所:ユーザのホームディレクトリの.m2/repositoryフォルダ)。

このプロセスはここで失敗します。

は、手動で解決-と、ダウンロードプロセスをトリガすることができます。

  • が働いてインターネット接続があると、必要な場合は、プロキシ設定が正しいことを確認してください。プロジェクトマネジメントやプロジェクトエクスプローラでRapidclipseプロジェクトに関する

  • 右クリックし、Mavenに行く - Update project

  • は、チェックボックスForce Update of Snapshots/Releasesを有効にして、その後OK

、のための構築プロセスとの対話を終えますプロジェクトはうまくいくはずです。

関連する問題