開発環境を構築している際に、ビルド時に下記のエラーが起こっています。
java
1CoreException: ビルド・プランを計算できませんでした: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-compiler-plugin:jar:3.1: ArtifactResolutionException: Failure to transfer org.apache.maven.plugins:maven-compiler-plugin:pom:3.1 from 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. オリジナル・エラー: Could not transfer artifact org.apache.maven.plugins:maven-compiler-plugin:pom:3.1 from/to central (https://repo.maven.apache.org/maven2): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target pom.xml /test 行 4 Maven プロジェクト・ビルド・ライフサイクル・マッピング問題 2CoreException: ビルド・プランを計算できませんでした: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-compiler-plugin:jar:3.1: ArtifactResolutionException: Failure to transfer org.apache.maven.plugins:maven-compiler-plugin:pom:3.1 from 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. オリジナル・エラー: Could not transfer artifact org.apache.maven.plugins:maven-compiler-plugin:pom:3.1 from/to central (https://repo.maven.apache.org/maven2): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target pom.xml /test 行 4 Maven プロジェクト・ビルド・ライフサイクル・マッピング問題 3Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from 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. オリジナル・エラー: Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central (https://repo.maven.apache.org/maven2): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target pom.xml /test 行 1 Maven 構成問題 4ライフサイクル構成でカバーされていないプラグインの実行: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (実行: default-compile, phase: compile) pom.xml /test 行 4 Maven プロジェクト・ビルド・ライフサイクル・マッピング問題 5ライフサイクル構成でカバーされていないプラグインの実行: org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (実行: default-testCompile, phase: test-compile) pom.xml /test 行 4 Maven プロジェクト・ビルド・ライフサイクル・マッピング問題 6
java
1POM.xml 2 3<project xmlns="http://maven.apache.org/POM/4.0.0" 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 6 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 7 8 <modelVersion>4.0.0</modelVersion> 9 10 <groupId>test</groupId> 11 <artifactId>test</artifactId> 12 <version>1.0-SNAPSHOT</version> 13 14 <name>test</name> 15 16 <properties> 17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 18 </properties> 19</project>
試したこと
プロジェクトのリフレッシュ
プロジェクトタブ⇒クリーン
プロジェクト右クリック⇒実行⇒MavenClean
プロジェクト右クリック⇒Maven⇒プロジェクトの更新
Eclipse再起動
~/.m2/repository 配下のフォルダを全て削除し、
Mavenプロジェクト右クリック → Maven → プロジェクトの更新。
上記をすべてやってみましたが変わらずでした。。。
他にあるとすれば設定ファイルとかでしょうか
何か他に解決策があればご教授ください。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。