Maven 2 maven:获取依赖项详细信息(Equinox)

Maven 2 maven:获取依赖项详细信息(Equinox),maven-2,equinox,pax,Maven 2,Equinox,Pax,maven和equinox的新成员。在阅读有关OSGi的教程时,我发布了以下命令 和平条款 这导致了以下错误 -> 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]

maven和equinox的新成员。在阅读有关OSGi的教程时,我发布了以下命令

和平条款

这导致了以下错误

 -> 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
mvn安装:安装文件-DgroupId=\
-DartifactId=\
-D版本=\
-D文件=\
-dpackage=jar\
-DgeneratePom=true

如何获取所有这些参数(组id、artifactId等)?

我可以找到2个可以获取mvn包的资源。 和。请评论这是否是正确的地方。我可以从搜索结果中获得工件id等。谢谢