0

私がすでに依存している jbossesb-rosetta にはありません。http://mavenhub.com/c/org/jboss/soa/esbを見ましたが、見つからないようです。システムの依存関係としていつでも含めることができると思いますが、最後の手段としてのみです。

4

1 に答える 1

0

Analysis

1) That artifact is not present in Maven Central, explaining why Maven cannot find it by default:

http://search.maven.org/#search|ga|1|a%3A%22jbossesb-soap%22

2) Jboss artifacts are hosted by a separate Nexus repository. A search there was similarily fruitless:

https://repository.jboss.org/nexus/index.html#nexus-search;gav~~jbossesb-soap~~~

3) A Google search threw up this same unanswered question on Jboss community forum:

https://community.jboss.org/thread/154253

Recommendation

Seems you are left with only one option. Upload the required jar into your own Maven respository so that the dependency can be found.

If you want to simply hack the jar into your current build, then I would recommend installing it into your local repository. Do not use system scope dependencies.

Jars can be installed locally using the Maven install plugin

于 2012-03-19T15:05:09.540 に答える