8

I cant seem to work this out (or maybe its just late!) - I installed Nexus and disabled anonymous access as I intend to proxy nexus on the web. It makes sense that there should be some manner to authenticate against the nexus repository, but I cant find anywhere to configure this.

Any help?

To be clear, from the client when we do mvn there must be some manner to authenticate against the maven repository. This is the piece that is alluding me at this time.

cmdematos
  • 299
  • 1
  • 4
  • 12

2 Answers2

10

You should have a file named settings.xml under $HOME/.m2 (under unix, no idea about windows) with the following content

<settings>
  <servers>
    <server>
      <id>my-repo</id>
      <username>myname</username>
      <password>******</password>
    </server>
  </servers>
</settings>

where my-repo is the id of the repository in your pom.xml:

<distributionManagement>
    <repository>
        <id>my-repo</id>
        <url>http://my-repo.url</url>
    </repository>
</distributionManagement>
Marco Righele
  • 316
  • 3
  • 7
-1

You add a server to your settings and that should have a username and password.

Manfred Moser
  • 173
  • 1
  • 7