|
7 | 7 | <password>${env.CI_DEPLOY_PASSWORD}</password>
|
8 | 8 | </server>
|
9 | 9 | </servers>
|
| 10 | + <profiles> |
| 11 | + <profile> |
| 12 | + <!-- |
| 13 | + N.B. this profile is only here to support users and IDEs that do not use Maven 3.3. |
| 14 | + It isn't needed on the command line if you use the wrapper script (mvnw) or if you use |
| 15 | + a native Maven with the right version. Eclipse users should points their Maven tooling to |
| 16 | + this settings file, or copy the profile into their ~/.m2/settings.xml. |
| 17 | + --> |
| 18 | + <id>spring</id> |
| 19 | + <activation><activeByDefault>true</activeByDefault></activation> |
| 20 | + <repositories> |
| 21 | + <repository> |
| 22 | + <id>spring-snapshots</id> |
| 23 | + <name>Spring Snapshots</name> |
| 24 | + <url>http://repo.spring.io/libs-snapshot-local</url> |
| 25 | + <snapshots> |
| 26 | + <enabled>true</enabled> |
| 27 | + </snapshots> |
| 28 | + </repository> |
| 29 | + <repository> |
| 30 | + <id>spring-milestones</id> |
| 31 | + <name>Spring Milestones</name> |
| 32 | + <url>http://repo.spring.io/libs-milestone-local</url> |
| 33 | + <snapshots> |
| 34 | + <enabled>false</enabled> |
| 35 | + </snapshots> |
| 36 | + </repository> |
| 37 | + <repository> |
| 38 | + <id>spring-releases</id> |
| 39 | + <name>Spring Releases</name> |
| 40 | + <url>http://repo.spring.io/release</url> |
| 41 | + <snapshots> |
| 42 | + <enabled>false</enabled> |
| 43 | + </snapshots> |
| 44 | + </repository> |
| 45 | + </repositories> |
| 46 | + <pluginRepositories> |
| 47 | + <pluginRepository> |
| 48 | + <id>spring-snapshots</id> |
| 49 | + <name>Spring Snapshots</name> |
| 50 | + <url>http://repo.spring.io/libs-snapshot-local</url> |
| 51 | + <snapshots> |
| 52 | + <enabled>true</enabled> |
| 53 | + </snapshots> |
| 54 | + </pluginRepository> |
| 55 | + <pluginRepository> |
| 56 | + <id>spring-milestones</id> |
| 57 | + <name>Spring Milestones</name> |
| 58 | + <url>http://repo.spring.io/libs-milestone-local</url> |
| 59 | + <snapshots> |
| 60 | + <enabled>false</enabled> |
| 61 | + </snapshots> |
| 62 | + </pluginRepository> |
| 63 | + </pluginRepositories> |
| 64 | + </profile> |
| 65 | + </profiles> |
10 | 66 | </settings>
|
0 commit comments