MavenとEquinoxは初めてです。OSGiのチュートリアルを行っているときに、次のコマンドを発行しました。
pax-プロビジョニング
次のエラーが発生しました。
-> Provision bundle [mvn:org.compass-project/compass/2.1.1, at default start level, bundle will be started, bundle will
be loaded from the cache]
-> Preparing framework [Equinox 3.6.0]
-> Downloading bundles...
-> Equinox 3.6.0 : connecting...
___
/ /
/ / Oops, there has been a problem!
/ /
/__/ URL [mvn:org.eclipse.osgi/org.eclipse.osgi/3.6.0.v20100517] could not be resolved.
___
/__/ Use --log=debug to see details.
Equinoxビルドがリポジトリで利用できないようです。したがって、
1。正しいバージョンのリポジトリを探す場所。コマンドや検索ツールはありますか?
2.読んだら、以下のコマンドでローカルにインストールできるかもしれません
mvn install:install-file -DgroupId=<your_group_name> \
-DartifactId=<your_artifact_name> \
-Dversion=<snapshot> \
-Dfile=<path_to_your_jar_file> \
-Dpackaging=jar \
-DgeneratePom=true
これらすべてのパラメーター(グループID、artifactIdなど)を取得するにはどうすればよいですか?