前提・実現したいこと
2014年に作成した開発環境のZipファイルを解凍し、
Javaプロジェクトをビルドしたい。
発生している問題・エラーメッセージ
ビルドエラーが発生する。
プロジェクト 'bat' でビルダー 'Maven プロジェクト・ビルダー' の実行中にエラーが発生しました。 Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5
「問題」タブの記載内容(一例。"Missing artifact ~と続くエラーは30行ほどあります"):
説明 リソース パス ロケーション 型
Missing artifact junit:junit:jar:4.11 pom.xml /bat 行 1 Maven Dependency Problem
試したこと
Mavenで得る情報の問題と考え、batプロジェクトを右クリック
→「実行」→Maven cleanを実行しました。
Maven Central Repository に情報を取りに行く場合、httpではなくhttpsでなければいけない旨のエラーが出たため、setting.xmlの作成で解決しました(以下xmlの内容)
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <mirrors> <mirror> <id>repo.maven.apache.org</id> <name>https maven2 </name> <url>https://repo.maven.apache.org/maven2</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> </settings>
その後、Maven cleanを実行した際、コンソールに以下のエラーメッセージが出ました
(以下抜粋)
[ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.4.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-clean-plugin:jar:2.4.1: Could not transfer artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.4.1 from/to repo.maven.apache.org (https://repo.maven.apache.org/maven2): Received fatal alert: protocol_version to https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom -> [Help 1]
これを調べて、
・Maven Central Repository に情報を取りに行く場合、TLSv1.2の通信でなければいけない
・TLSv1.2の通信を使うには、コマンドの引数に"-Dhttps.protocols=TLSv1.2"を加えることが必要
この二点が分かったため、以下の3種類を実行し、mvn cleanをしましたが、
同じエラーメッセージが出ました。
- ウィンドウ→設定→Java→インストール済のJRE→編集 で、デフォルトのVM引数に"-Dhttps.protocols=TLSv1.2"を加える
- 実行→実行構成→Maven build→新規構成→「ゴール」に"-Dhttps.protocols=TLSv1.2 clean"を入力し、実行ボタンを押下
- eclipse.iniの最終行に"-Dhttps.protocols=TLSv1.2"を加え、Eclipseを再起動
コマンドの引数に"-Dhttps.protocols=TLSv1.2"を加えても、
同じエラーが出る原因をご教授いただければ幸いです。
補足情報(FW/ツールのバージョンなど)
Eclipse
Version: Kepler Service Release 2
Build id: 20140224-0627
JRE
Eclipse(デフォルト)
JDK
コンパイラー準拠レベル:1.7
OS
Windows 10 Pro
Eclipse 用 Maven 統合(Luna and newer) 1.5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。