Reputation: 333
I am trying to setup a Nexus OSS 2 Repository with Repository Targets.
Reading the documentation, it implies I should be able to set a repository target with pattern "^/a/b/c/.*" and grant the appropriate CRUD permissions (specifically Read) and assign it to a user or role.
I assumed that if I grand this permission that a user can use the nexus UI to browse to each node of /a/b/c and download anything at or below "c".
However, to get this to work I need to grant all of the following patterns:
Is this correct or a bug?
I assume that this has to do with the REST API to expand the tree nodes... accessing the a.b.c|xyz.jar directly with maven probably would work.
Upvotes: 1
Views: 422
Reputation: 5318
This is expected, you need to adjust the regular expression to allow browsing, see here:
Upvotes: 1