Maven – Free artifactory or nexus service url without password, for using in intellij idea

artifactoryintellij-ideamavennexusrepository

Intelliji Idea shiped with 3 free online repository in settings -> maven -> artifactory or nexus service url
http://oss.sonatype.org/service/local/
http://repo.jfrog.org/artifactory/api/
https://repository.jboss.org/nexus/service/local/

all this repos are unavialable (404 error or password protected).

Can you give more free artifactory or nexus service url without password protect?
IDEA has no settings for password on repo URL.

Best Answer

The service URLs are used for attaching remote libraries to a module by running class search queries using the REST APIs available at those URLs and downloading the found librarie from the remote Artifactory.

The REST URLs aren't meant to be directly browsable.

Maybe this explains it better: http://blogs.jetbrains.com/idea/2010/08/getting-external-libraries-easily/

Related Topic