maven のセントラルリポジトリがダウンしている場合のミラー設定

(

)

by

in

maven の central repository (repo1.maven.org) がダウンしている場合に、ミラーサーバを設定してファイルを取得する方法。
maven を実行するユーザのホームディレクトリにある .m2 ディレクトリに以下の settings.xml ファイルを作成する(既にある場合は mirrors 以下を追加)

$ cd ~/.m2/
$ vi settings.xml
<settings>
<mirrors>
<mirror>
<id>ibiblio.org</id>
<name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
<mirrorof>central</mirrorof>
</mirror>
</mirrors>
</settings>

ミラーサイト一覧: http://docs.codehaus.org/display/MAVENUSER/Mirrors+Repositories
参考: http://maven.apache.org/guides/mini/guide-mirror-settings.html