Update README with information about all the settings files.

This commit is contained in:
Manuele Simi 2019-11-24 15:49:47 -05:00
parent 14fd479d50
commit b025827b95
2 changed files with 13 additions and 63 deletions

View File

@ -4,11 +4,16 @@
* Used by: gCube Developer
* Installed on: development machine
## jenkins-snapshots-settings.xml
## jenkins-job-settings.xml
* Used by: Jenkins jobs
* Installed on: slave nodes labeled with _CI_
* Need to be renamed to settings.xml on the node
## jenkins-snapshots-settings.xml
* Used by: Jenkins pipeline jobs
* When: To build a complete snapshot
* Installed on: slave nodes labeled with _CD_
## jenkins-snapshots-dry-run-settings.xml
* Used by: Jenkins pipeline jobs
* When: To test a complete snapshot without deploying on a remote repo
@ -16,7 +21,12 @@
## jenkins-staging-settings.xml
* Used by: Jenkins pipeline jobs
* When: To test a complete release with deployment on the gcube-staging-jenkins repository
* When: To build a complete release with deployment on the gcube-staging-jenkins repository
* Installed on: slave nodes labeled with _CD_
## jenkins-staging-dry-run-settings.xml
* Used by: Jenkins pipeline jobs
* When: To test a complete release without deploying on a remote repo
* Installed on: slave nodes labeled with _CD_
## jenkins-release-dry-run-settings.xml
@ -26,5 +36,5 @@
## jenkins-release-settings.xml
* Used by: Jenkins pipeline jobs
* When: To test a complete release with deployment on the gcube-releases repository
* When: To build a complete release with deployment on the gcube-releases repository
* Installed on: slave nodes labeled with _CD_

View File

@ -1,60 +0,0 @@
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>gcube-snapshots</id>
<username>{{ gcube_maven_user }}</username>
<password>{{ gcube_maven_pwd }}</password>
</server>
</servers>
<profiles>
<profile>
<id>jenkins-snapshots</id>
<repositories>
<repository>
<id>gcube-snapshots</id>
<name>gCube Snapshots</name>
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>gcube-releases</id>
<name>gCube Releases</name>
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>gcube-externals</id>
<name>gCube Externals</name>
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-externals</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jenkins-snapshots</activeProfile>
</activeProfiles>
</settings>