I have setup a local nexus server with a hosted repo dev-repo
http://localhost:8081/nexus/content/repositories/dev-repo/
In gradle I can download the artifacts hosted like this:
repositories {
maven {
url "http://localhost:8081/nexus/content/repositories/dev-repo/"
credentials {
username "admin"
password "admin"
}
}
}
When I am not logged in, I am able to access the above repository in the browser.
Why is that?
Isn't it secured by Nexus admin account by default?