Apologies for the noob question, but how do I test the stage release?
(I had a quick look at
http://docs.codehaus.org/display/MAVEN/Development+Process and
http://docs.codehaus.org/display/MAVEN/Development+Procedures but
couldn't find it).

Is it just a matter of defining
http://people.apache.org/~brianf/staging-repository/ as a repo in
settings.xml as:

   <profile>
     <id>staging</id>
     <repositories>
     <pluginRepositories>
       <pluginRepository>
         <id>staging</id>
         <name>Maven Plugin Staging Repository</name>
         <url>http://people.apache.org/~brianf/staging-repository/</url>
         <releases>
           <enabled>true</enabled>
         </releases>
         <snapshots>
           <enabled>false</enabled>
         </snapshots>
       </pluginRepository>
     </pluginRepositories>
   </profile>

What happens when the real thing is released? Will my local repo be
polluted with the staging details and I need to clean it up?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to