views:

110

answers:

1

When trying to use the following settings:

<dependency org="net.sourceforge.artifact" name="artifact" rev="2.0"/>

and:

<artifact pattern="http://localhost/nexus/content/repositories/releases/[module]/[artifact]/[revision]/[artifact]-[revision].[ext]" />

Nexus expects

http:// ... net/sourceforge/artifact/artifact/revision/artifact.ext

but net and sourceforge are being completely dropped like so:

http:// ... artifact/artifact/revision/artifact.ext
A: 

The correct resolver to use in this case is the IBiblio resolver found here. It will properly translate the periods in the org name to the proper url.

Brandon