|
8 | 8 | <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" |
9 | 9 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
10 | 10 | xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> |
11 | | - <mirrors> |
12 | | - <mirror> |
13 | | - <id>atlassian-central</id> |
14 | | - <mirrorOf>central</mirrorOf> |
15 | | - <name>atlassian-central</name> |
16 | | - <url>https://maven.atlassian.com/repository/public</url> |
17 | | - </mirror> |
18 | | - </mirrors> |
| 11 | + <profiles> |
| 12 | + <profile> |
| 13 | + <id>defaultProfile</id> |
| 14 | + <activation> |
| 15 | + <activeByDefault>true</activeByDefault> |
| 16 | + </activation> |
| 17 | + <repositories> |
| 18 | + <repository> |
| 19 | + <id>maven-central</id> |
| 20 | + <name>Maven Central</name> |
| 21 | + <url>https://repo1.maven.org/maven2/</url> |
| 22 | + </repository> |
| 23 | + <repository> |
| 24 | + <id>atlassian-proxy</id> |
| 25 | + <name>Atlassian Maven 2 Proxy</name> |
| 26 | + <url>https://packages.atlassian.com/artifactory/maven-atlassian-all/ </url> |
| 27 | + </repository> |
| 28 | + <repository> |
| 29 | + <id>terracotta</id> |
| 30 | + <name>Terracotta</name> |
| 31 | + <url>https://repo.terracotta.org/maven2/</url> |
| 32 | + </repository> |
| 33 | + <repository> |
| 34 | + <id>jenkins-releases</id> |
| 35 | + <name>Jenkins</name> |
| 36 | + <url>https://repo.jenkins-ci.org/releases/</url> |
| 37 | + </repository> |
| 38 | + </repositories> |
| 39 | + |
| 40 | + <pluginRepositories> |
| 41 | + <pluginRepository> |
| 42 | + <id>maven-central</id> |
| 43 | + <name>Maven Central</name> |
| 44 | + <url>https://repo1.maven.org/maven2/</url> |
| 45 | + </pluginRepository> |
| 46 | + <pluginRepository> |
| 47 | + <id>atlassian-proxy</id> |
| 48 | + <name>Atlassian Maven 2 Proxy</name> |
| 49 | + <url>https://packages.atlassian.com/maven/repository/public</url> |
| 50 | + </pluginRepository> |
| 51 | + </pluginRepositories> |
| 52 | + |
| 53 | + <properties> |
| 54 | + <downloadSources>true</downloadSources> |
| 55 | + <downloadJavadocs>true</downloadJavadocs> |
| 56 | + </properties> |
| 57 | + </profile> |
| 58 | + </profiles> |
19 | 59 |
|
20 | 60 | <servers> |
21 | 61 | <server> |
|
0 commit comments