vote up 2 vote down star

I have an Artifactory repo that sits behind basic authentication. How would I configure the settings.xml to allow access?

<mirrors>
	<mirror>
		<id>artifactory</id>
		<mirrorOf>*</mirrorOf>
		<url>https://myserver.example.com/artifactory/repo</url>
		<name>Artifactory</name>
	</mirror>
</mirrors>
<servers>
	<!--
		This server configuration gives your personal username/password for
		artifactory. Note that the server id must match that given in the
		mirrors section.
	-->
	<server>
		<id>Artifactory</id>
		<username>someArtifactoryUser</username>
		<password>someArtifactoryPassword</password>
	</server>

So server tag is the user credentials for the artifactory user, but I also need to provide another user/password to get through the basic-auth. Where would I put that?!?

flag

1 Answer

vote up 2 vote down

The username and password go in the server settings as you have them. I think your problem is that you've specified the server by its name (Artifactory), rather than its id (artifactory).

I'd recommend you put the server settings in your user settings rather than the global settings. You can also encrypt the password in Maven 2.1.0+, see the mini guide for details.

Update: What version of Artifactory are you using? There is a discussion and corresponding issue that basic-auth fails. This has apparently been fixed in 2.0.7 and 2.1.0.

From the discussion, it seems that a workaround is to pass the properties via the command line, e.g.

-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080 -Dproxy.username=... -Dhttp.password=...

Update: To let your Maven installation connect through a firewall, you'll need to configure the proxy section of the settings.xml, see this question for some pointers on doing that.


Update2: There are additional properties you can set in the server settings, see this blog for some background. I've not had an opportunity to test this, but from the blog and related http wagon javadoc, it appears you can set authenticationInfo on the server settings, something like this:

<server>  
  <id>Artifactory</id>
  <username>someArtifactoryUser</username>
  <password>someArtifactoryPassword</password>
  <configuration>  
    <authenticationInfo>
      <userName>auth-user</userName>
      <password>auth-pass</password>
    </authenticationInfo>
  </configuration>  
</server>
link|flag
Thanks for the Maven encryption tip... The name/id conflict isn't the issue though. The problem still remains that I have two sets of credentials to work with. – harschware Aug 15 at 17:13
The proxy settings might apply to configuring my Maven to get through to the server. I tried putting them in place but am having no luck. The issues you cite above, seem to be about getting Artifactory to communicate through a firewall. In my case I am trying to get Maven to communicate to an Artifactory that sits behind basic-auth. I will continue trying proxy settings, and post any updates. Thanks. – harschware Aug 17 at 15:23
I found this: maven.apache.org/guides/mini/… – harschware Aug 17 at 15:27
Sorry I thought I had posted a link to the proxy mini guide already, looking at my answer again it seems not. If you configure your proxy settings in the settings.xml it allows Maven to get outside the firewall. – Rich Seller Aug 17 at 15:30
1  
If you look in your browser, you'll see if you're using a proxy to connect to the net (on IE it's Tools->Internet Options...->Connections->LAN Settings->Proxy Server and on Firefox its Tools->Options->Advanced->Network-Settings...). If you are using a proxy you need to configure Maven's proxy settings with the same values for the proxy host and port, the username and password will be your domain user and password – Rich Seller Aug 17 at 20:07
show 12 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.