0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mavenのビルド時のエラー: PKIX path building failedの対策

Last updated at Posted at 2024-12-09

表題のエラーPKIX path building failedがなかなか解消できず、めっちゃハマった。

環境はEclipse組み込みプラグインのMaven。

後ろに以下のオプション設定をすることで、SSL認証を無効化するとの情報が多いが、エラーが解消せず、認証鍵をキーストアへ登録してみても解消せず、途方に暮れていた。

mvn clean install -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

以下のオプションで通った。
※insecureなので開発環境下のみを推奨。

mvn clean install -Daether.connector.https.securityMode=insecure

Maven 3.9 以降、デフォルトの Transport 実装をネイティブに変更しました。

とのこと。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?