Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] AuthChallengeProcessor basic authentication scheme

Hi,

we use tycho/maven for our product-build.
Since we use a proxy, i get at every build following message (20 times or more):

Nov 26, 2012 2:25:48 PM org.apache.commons.httpclient.auth.AuthChallengeProcessor selectAuthScheme
INFO: basic authentication scheme selected


I've declared following p2-repositories in my parent pom.xml:

<repositories>
        <repository>
            <id>eclipse-juno</id>
            <layout>p2</layout>
            <url>http://download.eclipse.org/eclipse/updates/3.8-M-builds</url>
        </repository>
        <repository>
            <id>eclipse-emf</id>
            <layout>p2</layout>
            <url>http://download.eclipse.org/modeling/emf/updates/releases/</url>
        </repository>
        <repository>
            <id>eclipse-orbit</id>
            <layout>p2</layout>
            <url>http://download.eclipse.org/tools/orbit/downloads/drops/S20121021123453/repository/</url>
        </repository>
        <repository>
            <id>3rdparty</id>
            <layout>p2</layout>
            <url>http://ourAdress/p2/3rdParty/</url>
        </repository>
        <repository>
            <id>e4-methods</id>
            <layout>p2</layout>
            <url>http://ourAdress/p2/e4Methods/</url>
        </repository>
</repositories>

According to http://wiki.eclipse.org/Tycho/Target_Platform/Authentication_and_Mirrors#Credentials
i need to specify following in my $HOME/.m2/settings.xml:

<servers>
  <server>
      <id>eclipse-juno</id>
      <username>user</username>
      <password>pw</password>
  </server>
<server>
      <id>eclipse-emf</id>
      <username>user</username>
      <password>pw</password>
  </server>
  <server>
      <id>eclipse-orbit</id>
      <username>user</username>
      <password>pw</password>
  </server>
<server>
      <id>3rdparty</id>
      <username>user</username>
      <password>pw</password>
  </server>
  <server>
      <id>e4-methods</id>
      <username>user</username>
      <password>pw</password>
  </server>
</servers>

But im still get these messages.
Maybe anyone can explain me why?
Thanks.

best regards,
Timo Lange

-- 
Mit freundlichen Gruessen / Best regards

Timo Lange
Software-Engineer
Basic Design, Ship Theory and Development 

Flensburger Schiffbau-Gesellschaft
Dept. TFE
Tel.   : +49 461 4940-579
Fax   : +49 461 4940-217
E-Mail: lange@xxxxxxxxxxx

Web: http://www.fsg-ship.de 
-- 

============================================================================
FLENSBURGER SCHIFFBAU-GESELLSCHAFT mbH & Co. KG
Batteriestrasse 52, 24939 Flensburg

Sitz der Gesellschaft / Place of business : Flensburg
Geschaeftsfuehrer / CEO : Peter Sierk
Handelregister / Commercial register : Amtsgericht Flensburg, HRA 3140
Steuer Nr. / Tax number: 1528040009
USt.-Id-Nr. / VAT no : DE 134633705
Amtsgericht / District court : Flensburg HRB 2036
============================================================================

The information contained in this email message may be privileged and
confidential. If you have received this communication in error, please
notify the sender immediately by telephoning (+49-461-49400) and return this
message to the above address. Thank you.

Back to the top