|
| 1 | +<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> |
| 4 | + |
| 5 | + <servers> |
| 6 | + <server> |
| 7 | + <id>release-train</id> |
| 8 | + <username>${env.RELEASE_TRAIN_MAVEN_REPOSITORY_USERNAME}</username> |
| 9 | + <password>${env.RELEASE_TRAIN_MAVEN_REPOSITORY_PASSWORD}</password> |
| 10 | + </server> |
| 11 | + <server> |
| 12 | + <id>spring-commercial-snapshot</id> |
| 13 | + <username>${env.COMMERCIAL_REPO_USERNAME}</username> |
| 14 | + <password>${env.COMMERCIAL_REPO_PASSWORD}</password> |
| 15 | + </server> |
| 16 | + <server> |
| 17 | + <id>spring-commercial-release</id> |
| 18 | + <username>${env.COMMERCIAL_REPO_USERNAME}</username> |
| 19 | + <password>${env.COMMERCIAL_REPO_PASSWORD}</password> |
| 20 | + </server> |
| 21 | + <server> |
| 22 | + <id>repo-spring-io-spring-commercial-snapshot</id> |
| 23 | + <username>${env.COMMERCIAL_REPO_USERNAME}</username> |
| 24 | + <password>${env.COMMERCIAL_REPO_PASSWORD}</password> |
| 25 | + </server> |
| 26 | + <server> |
| 27 | + <id>repo-spring-io-spring-commercial-release</id> |
| 28 | + <username>${env.COMMERCIAL_REPO_USERNAME}</username> |
| 29 | + <password>${env.COMMERCIAL_REPO_PASSWORD}</password> |
| 30 | + </server> |
| 31 | + </servers> |
| 32 | + |
| 33 | + <mirrors> |
| 34 | + <mirror> |
| 35 | + <!-- This redirects the spring-snapshots repo to the release-train repo --> |
| 36 | + <id>release-train</id> |
| 37 | + <mirrorOf>spring-snapshots</mirrorOf> |
| 38 | + <url>${env.RELEASE_TRAIN_MAVEN_REPOSITORY_URL}</url> |
| 39 | + </mirror> |
| 40 | + </mirrors> |
| 41 | + |
| 42 | + <profiles> |
| 43 | + <profile> |
| 44 | + <id>releaseTrain</id> |
| 45 | + <repositories> |
| 46 | + <repository> |
| 47 | + <id>release-train</id> |
| 48 | + <url>${env.RELEASE_TRAIN_MAVEN_REPOSITORY_URL}</url> |
| 49 | + <releases> |
| 50 | + <enabled>true</enabled> |
| 51 | + </releases> |
| 52 | + <snapshots> |
| 53 | + <enabled>true</enabled> |
| 54 | + <updatePolicy>always</updatePolicy> |
| 55 | + </snapshots> |
| 56 | + </repository> |
| 57 | + </repositories> |
| 58 | + <pluginRepositories> |
| 59 | + <pluginRepository> |
| 60 | + <id>release-train</id> |
| 61 | + <url>${env.RELEASE_TRAIN_MAVEN_REPOSITORY_URL}</url> |
| 62 | + <releases> |
| 63 | + <enabled>true</enabled> |
| 64 | + </releases> |
| 65 | + <snapshots> |
| 66 | + <enabled>true</enabled> |
| 67 | + <updatePolicy>always</updatePolicy> |
| 68 | + </snapshots> |
| 69 | + </pluginRepository> |
| 70 | + </pluginRepositories> |
| 71 | + </profile> |
| 72 | + </profiles> |
| 73 | +</settings> |
0 commit comments