Changes between Version 6 and Version 7 of Nexus


Ignore:
Timestamp:
06/09/15 14:06:41 (9 years ago)
Author:
Twan Goosen
Comment:

general settings

Legend:

Unmodified
Added
Removed
Modified
  • Nexus

    v6 v7  
    77Users with a CLARIN website account in the 'developer' role can log in (username = email address) and use these credentials to deploy artefacts into the repository.
    88
    9 == Settings for deployment of artifacts ==
     9== Settings ==
     10
     11Add the following sections to your Maven '''settings.xml''' file:
     12
     13{{{#!xml
     14<repositories>
     15        ...
     16        <repository>
     17                <id>CLARIN</id>
     18                <name>CLARIN Repository</name>
     19                <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
     20                <snapshots>
     21                        <enabled>false</enabled>
     22                </snapshots>
     23        </repository>
     24        <repository>
     25                <id>CLARIN-Snapshot</id>
     26                <name>CLARIN Snapshot Repository</name>
     27                <url>https://nexus.clarin.eu/content/repositories/clarin-snapshot</url>
     28                <snapshots>
     29                        <enabled>true</enabled>
     30                </snapshots>
     31        </repository>
     32</repositories>
     33
     34}}}
     35
     36=== Settings for deployment of artifacts ===
    1037
    1138You can deploy both 'snapshot' and stable artifacts to the Nexus repository if you have a valid account. Maven needs to be configured to use this account before you can deploy artifacts.
     
    4471}}}
    4572
    46 {{{#!xml
    47 <repositories>
    48         ...
    49         <repository>
    50                 <id>CLARIN</id>
    51                 <name>CLARIN Repository</name>
    52                 <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
    53                 <snapshots>
    54                         <enabled>false</enabled>
    55                 </snapshots>
    56         </repository>
    57         <repository>
    58                 <id>CLARIN-Snapshot</id>
    59                 <name>CLARIN Snapshot Repository</name>
    60                 <url>https://nexus.clarin.eu/content/repositories/clarin-snapshot</url>
    61                 <snapshots>
    62                         <enabled>true</enabled>
    63                 </snapshots>
    64         </repository>
    65 </repositories>
    66 
    67 }}}
    68 
    6973'''Store passwords encrypted! ''' See [https://maven.apache.org/guides/mini/guide-encryption.html] for instructions.
    7074