You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by David Blevins <da...@visi.com> on 2009/04/16 03:50:41 UTC

Re: Nexus for repo management

FYI, here are the settings you'll need in your ~/.m2/settings.xml file  
to publish snapshots and releases.

   <settings>
     <servers>
       <server>
         <id>apache.snapshots.https</id>
         <username>dblevins</username>
         <password>xxxxxxxx</password>
       </server>
       <server>
         <id>apache.releases.https</id>
         <username>dblevins</username>
         <password>xxxxxxxx</password>
       </server>
     </servers>
   </settings>


The password should be your svn.apache.org password.

-David