csv4j の Maven リポジトリが消えてる

昔、csv4jMaven リポジトリを紹介したが、

http://blog.zaq.ne.jp/oboe2uran/article/585/

今は、もうこのリポジトリが存在しない。

http://repository.aduna-software.org/maven2

http://repository.aduna-software.org/

これらのリポジトリサイトはもう存在しない。

だから、今後使う可能性があるなら、http://csv4j.sourceforge.net/ ここから、JAR ファイルを入手しておいた方が良い。

入手したJARファイルを下記コマンドでローカルリポジトリに入れておいた方が良い。

mvn install:install-file -Dfile=c:/Users/uranus/csv4j-0.4.0.jar -DgroupId=net.sf.csv4j
-DartifactId=csv4j -Dversion=0.4.0 -Dpackaging=jar

↑↑↑
1行で。。。


pom.xml は、、、

<dependency>
    <groupId>net.sf.csv4j</groupId>
    <artifactId>csv4j</artifactId>
    <version>0.4.0</version>
</dependency>

csv4j を使う予定があるならこの準備だけはしておいた方が良い。