Come Usare un Singolo Gruppo di Nexus

From Servizi RSI
Jump to: navigation, search

Il modo più veloce per adottare Nexus per lo sviluppo interno, consiste nel configurare un unico gruppo Nexus che contiene sia le release che gli snapshot.

Per fare questo, aggiungere i repository snapshot al gruppo pubblico, e aggiungere la seguente configurazione alle impostazioni di Maven in

~/.m2/settings.xml


<settings>
 <mirrors>
   <mirror>
     <id>nexus</id>
     <mirrorOf>*</mirrorOf>
     <url>http://buildandtest.si.cnr.it:8081/nexus/content/groups/public</url>
   </mirror>
 </mirrors>
 <profiles>
   <profile>
     <id>nexus</id>
     <repositories>
       <repository>
         <id>central</id>
         <url>http://central</url>
         <releases><enabled>true</enabled></releases>
         <snapshots><enabled>true</enabled></snapshots>
       </repository>
     </repositories>
    <pluginRepositories>
       <pluginRepository>
         <id>central</id>
         <url>http://central</url>
         <releases><enabled>true</enabled></releases>
         <snapshots><enabled>true</enabled></snapshots>
       </pluginRepository>
     </pluginRepositories>
   </profile>
 </profiles>
 <activeProfiles>
   <activeProfile>nexus</activeProfile>
 </activeProfiles>
</settings>


Il precedente esempio definisce un singolo profilo: nexus. Tale profilo è configurato per scaricare dal repository centrale con un URL FASULLO

http://central. 

L'URL FASULLO viene poi sovrascritto attraverso la configurazione del mirror al proprio server Nexus nello stesso file setting.xml.

Ed in fine nell'elemento activeProfiles il gruppo creato viene dichiarato come attivo.

Aggiungere Repository Personalizzati per Soddisfare Dipendenze