7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

digdagプラグイン使用時の「java.net.UnknownHostException: central.maven.org」対応

Posted at

digdagでプラグインを使用していて以下のようなエラーが発生した時の対応方法です。0.9.41より前のバージョンを使用していると発生します。

java.lang.RuntimeException: org.eclipse.aether.resolution.DependencyResolutionException: Failed to collect dependencies at ...
...
Caused by: java.net.UnknownHostException: central.maven.org

0.9.41で対応済みなので、それ以上のバージョンに上げれば即解決です。

※参考

バージョンを上げることが出来ない状況なら、repositoriesにhttps://repo1.maven.org/maven2/を追加することでエラーを回避出来ます。

plugin:
  repositories:
    - https://repo1.maven.org/maven2/
  dependencies:
    - .....
7
2
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
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?