M2Eclipse プラグイン (インポート -> Maven -> SCM から Maven プロジェクトをチェックアウト) を使用して、YCSB github プロジェクトのクローンを作成しました。これで、Package Explorer に importet フォルダーが表示されます。しかし、>root を除くすべてのフォルダーの pom.xml にエラーがあります。エラーは言う:
この行に複数の注釈が見つかりました: - ライフサイクル構成でカバーされていないプラグインの実行: org.apache.maven.plugins:maven-compiler-plugin:3.3:testCompile (実行: default-testCompile、フェーズ: test-compile) - プラグインの実行はありませんライフサイクル構成でカバー: org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (execution: default-compile, phase: compile) - ライフサイクル構成でカバーされていないプラグインの実行: org.apache.maven.plugins: maven-checkstyle-plugin:2.15:checkstyle (実行: 検証、フェーズ: 検証) - CoreException: ビルド プランを計算できませんでした: プラグイン org.apache.maven.plugins:maven-compiler-plugin:3.3 またはその依存関係の 1 つを計算できませんでした解決する: org.apache.maven.plugins:maven-compiler-plugin:jar:3.3 のアーティファクト記述子を読み取れませんでした: ArtifactResolutionException:org.apache.maven.plugins:maven-compiler-plugin:pom:3.3 からの転送に失敗しましたhttps://repo.maven.apache.org/maven2はローカル リポジトリにキャッシュされました。解決は、中央の更新間隔が経過するか更新が強制されるまで再試行されません。元のエラー: アーティファクト org.apache.maven.plugins:maven-compiler-plugin:pom:3.3 を中央 ( https://repo.maven.apache.org/maven2 ): repo.maven.apache との間で転送できませんでした。組織
YCSB Project の Getting Started サイトに従って、プロジェクトの >root フォルダーを次のコマンドでコンパイルしようとしています。
mvn clean package
したがって、Eclipse im では、クリーンとパッケージを目標として設定します。次の出力でプロジェクト終了出口を構築しようとしています。
[INFO] YCSB Root .......................................... FAILURE [ 0.686 s]
[INFO] Core YCSB .......................................... SKIPPED
[INFO] Per Datastore Binding descriptor ................... SKIPPED
[INFO] YCSB Datastore Binding Parent ...................... SKIPPED
[INFO] Accumulo DB Binding ................................ SKIPPED
[INFO] Aerospike DB Binding ............................... SKIPPED
[INFO] Cassandra DB Binding ............................... SKIPPED
[INFO] Couchbase Binding .................................. SKIPPED
[INFO] DynamoDB DB Binding ................................ SKIPPED
[INFO] ElasticSearch Binding .............................. SKIPPED
[INFO] Gemfire DB Binding ................................. SKIPPED
[INFO] HBase DB Binding ................................... SKIPPED
[INFO] Hypertable DB Binding .............................. SKIPPED
[INFO] Infinispan DB Binding .............................. SKIPPED
[INFO] JDBC DB Binding .................................... SKIPPED
[INFO] MongoDB Binding .................................... SKIPPED
[INFO] OrientDB Binding ................................... SKIPPED
[INFO] Redis DB Binding ................................... SKIPPED
[INFO] Tarantool DB Binding ............................... SKIPPED
[INFO] YCSB Release Distribution Builder .................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.040 s
[INFO] Finished at: 2015-09-09T09:27:59+02:00
[INFO] Final Memory: 6M/16M
[INFO] ------------------------------------------------------------------------
[ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-clean-plugin:jar:2.5: Could not transfer artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.5 from/to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org: Unknown host repo.maven.apache.org -> [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/PluginResolutionException
私は何を間違っていますか?