Eclipseを使用してJavaで開発されたプロジェクトがあります。このプロジェクトでは、一連のjarを使用しています。現在、Mavenを使用してこのプロジェクトを実行しようとしています。私は次のようにすべてのjar依存性smthのpomファイルを構成しました:
<dependency>
<groupId>org.eclipse.uml2</groupId>
<artifactId>uml</artifactId>
<version>3.2.1</version>
</dependency>
プロジェクトにあるのと同じバージョンのライブラリを使用しようとしています。私は2つの問題に直面しています:1。このようにライブラリを指定すると、mavenが使用しているデフォルトのリポジトリからダウンロードできないというエラーが表示されます。2.次のようにpomsmthでリポジトリを指定した場合:
<repositories>
<repository>
<id>Indigo Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/indigo</url>
</repository>
<repository>
<id>Juno Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/juno</url>
</repository>
<repository>
<id>Snapshots</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/snapshots</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Indigo Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/indigo</url>
</pluginRepository>
<pluginRepository>
<id>Juno Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/juno</url>
</pluginRepository>
<pluginRepository>
<id>Snapshots</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/snapshots</url>
</pluginRepository>
</pluginRepositories>
このリポジトリにあるバージョンよりも、ダウンロードしたいバージョンではありません。ローカルリポジトリにライブラリを手動でダウンロードしようとしましたが、大変な作業でした。これを行う簡単な方法はありませんか?
前もって感謝します