maven 3
まず、 /path/to/maven にインストールし、以下の /path/to/maven/conf/setting.xml を構成しました。
<localRepository>/path/to/repository</localRepository>
m2eclipse
次に、Eclipse 3.7.2 for Java EE にインストールし、以下で構成します。
preferences->maven->
installation->"/path/to/maven"
userSettings->"/path/to/maven/conf/setting.xml"
localRepository->"/path/to/repository"
によるインデックスの構築が完了すると、以下の /path/to/repository と /path/to/home/.m2/repository の両方にm2eclipse
重複したディレクトリが生成されました。.cache
.cache/
└── [4.0K] m2e
└── [4.0K] 1.2.0
└── ....
├── [ 64M] nexus-maven-repository-index.gz
└── [1.1K] nexus-maven-repository-index.properties
インデックスの重複の原因は何ですか? それは普通ですか?
mvn CLI
とをm2eclispe
交互に (並行してではなく)使用すると、上記のインデックスにどのような副作用がありますか?