|
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 2 | +<settings> |
| 3 | + <localRepository>${user.home}/.m2/raptor2</localRepository> |
| 4 | + <!-- |
| 5 | + For Authenticated accss one server entry needed per ID in |
| 6 | + Profiles -> Profile -> repositories -> |
| 7 | + --> |
| 8 | + <servers> |
| 9 | + <server> |
| 10 | + <id>raptor.aggregator</id> |
| 11 | + <username>RaptorTeam</username> |
| 12 | + <password>RaptorTeam</password> |
| 13 | + </server> |
| 14 | + <server> |
| 15 | + <id>central</id> |
| 16 | + <username>RaptorTeam</username> |
| 17 | + <password>RaptorTeam</password> |
| 18 | + </server> |
| 19 | + <server> |
| 20 | + <id>raptor.releases</id> |
| 21 | + <username>RaptorTeam</username> |
| 22 | + <password>RaptorTeam</password> |
| 23 | + </server> |
| 24 | + <server> |
| 25 | + <id>raptor.snapshots</id> |
| 26 | + <username>RaptorTeam</username> |
| 27 | + <password>RaptorTeam</password> |
| 28 | + </server> |
| 29 | + <server> |
| 30 | + <id>raptor.plugins</id> |
| 31 | + <username>RaptorTeam</username> |
| 32 | + <password>RaptorTeam</password> |
| 33 | + </server> |
| 34 | + <server> |
| 35 | + <id>raptor.thirdparty</id> |
| 36 | + <username>RaptorTeam</username> |
| 37 | + <password>RaptorTeam</password> |
| 38 | + </server> |
| 39 | + <server> |
| 40 | + <id>raptor.commercial</id> |
| 41 | + <username>RaptorTeam</username> |
| 42 | + <password>RaptorTeam</password> |
| 43 | + </server> |
| 44 | + <server> |
| 45 | + <id>raptor.v3debt</id> |
| 46 | + <username>RaptorTeam</username> |
| 47 | + <password>RaptorTeam</password> |
| 48 | + </server> |
| 49 | + </servers> |
| 50 | + <mirrors> |
| 51 | + <mirror> |
| 52 | + <id>central</id> |
| 53 | + <!-- |
| 54 | + Below entry Honors all repositories defined in the pom file of direct/transitive dependencies |
| 55 | + --> |
| 56 | + <mirrorOf>central</mirrorOf> |
| 57 | + <!-- |
| 58 | + Following entry forces maven to use only ebaycentral.qa.ebay.com. This improved build time. |
| 59 | + If you add new repository, make sure to enter the text !newrepoID in the list below, and add auth above if that repo needs authentication. |
| 60 | + --> |
| 61 | + <!-- <mirrorOf>*,!raptor.aggregator,!raptor.releases,!raptor.snapshots,!raptor.thirdparty,!raptor.plugins,!raptor.commercial,!raptor.v3debt,!raptor.extn1,!raptor.extn2</mirrorOf> --> |
| 62 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/central</url> |
| 63 | + </mirror> |
| 64 | + </mirrors> |
| 65 | + <profiles> |
| 66 | + <profile> |
| 67 | + <id>ebay</id> |
| 68 | + <!-- add a repository property to ease the archetype:generate usage --> |
| 69 | + <properties> |
| 70 | + <archetypeCatalog>https://ebaycentral.qa.ebay.com/content/repositories/releases/archetype-catalog.xml</archetypeCatalog> |
| 71 | + </properties> |
| 72 | + <repositories> |
| 73 | + <!-- Raptor Repository --> |
| 74 | + <repository> |
| 75 | + <id>raptor.aggregator</id> |
| 76 | + <url>https://ebaycentral.corp.ebay.com/content/groups/aggregator/</url> |
| 77 | + <releases> |
| 78 | + <enabled>true</enabled> |
| 79 | + <updatePolicy>never</updatePolicy> |
| 80 | + </releases> |
| 81 | + <snapshots> |
| 82 | + <enabled>false</enabled> |
| 83 | + </snapshots> |
| 84 | + </repository> |
| 85 | + <repository> |
| 86 | + <id>raptor.releases</id> |
| 87 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/releases</url> |
| 88 | + <releases> |
| 89 | + <enabled>true</enabled> |
| 90 | + </releases> |
| 91 | + <snapshots> |
| 92 | + <enabled>false</enabled> |
| 93 | + </snapshots> |
| 94 | + </repository> |
| 95 | + <repository> |
| 96 | + <id>raptor.v3debt</id> |
| 97 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/v3debt</url> |
| 98 | + <releases> |
| 99 | + <enabled>true</enabled> |
| 100 | + </releases> |
| 101 | + <snapshots> |
| 102 | + <enabled>false</enabled> |
| 103 | + </snapshots> |
| 104 | + </repository> |
| 105 | + <repository> |
| 106 | + <id>raptor.snapshots</id> |
| 107 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/snapshots</url> |
| 108 | + <releases> |
| 109 | + <enabled>false</enabled> |
| 110 | + </releases> |
| 111 | + <snapshots> |
| 112 | + <enabled>true</enabled> |
| 113 | + </snapshots> |
| 114 | + </repository> |
| 115 | + <repository> |
| 116 | + <id>raptor.thirdparty</id> |
| 117 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/thirdparty</url> |
| 118 | + <releases> |
| 119 | + <enabled>true</enabled> |
| 120 | + </releases> |
| 121 | + <snapshots> |
| 122 | + <enabled>false</enabled> |
| 123 | + </snapshots> |
| 124 | + </repository> |
| 125 | + <repository> |
| 126 | + <id>raptor.commercial</id> |
| 127 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/commercial</url> |
| 128 | + <releases> |
| 129 | + <enabled>true</enabled> |
| 130 | + </releases> |
| 131 | + <snapshots> |
| 132 | + <enabled>false</enabled> |
| 133 | + </snapshots> |
| 134 | + </repository> |
| 135 | + </repositories> |
| 136 | + <pluginRepositories> |
| 137 | + <pluginRepository> |
| 138 | + <id>raptor.aggregator</id> |
| 139 | + <url>https://ebaycentral.corp.ebay.com/content/groups/aggregator/</url> |
| 140 | + <releases> |
| 141 | + <enabled>true</enabled> |
| 142 | + <updatePolicy>never</updatePolicy> |
| 143 | + </releases> |
| 144 | + <snapshots> |
| 145 | + <enabled>false</enabled> |
| 146 | + </snapshots> |
| 147 | + </pluginRepository> |
| 148 | + <pluginRepository> |
| 149 | + <id>central</id> |
| 150 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/central</url> |
| 151 | + <releases> |
| 152 | + <enabled>true</enabled> |
| 153 | + </releases> |
| 154 | + <snapshots> |
| 155 | + <enabled>false</enabled> |
| 156 | + </snapshots> |
| 157 | + </pluginRepository> |
| 158 | + <pluginRepository> |
| 159 | + <id>raptor.releases</id> |
| 160 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/releases</url> |
| 161 | + <releases> |
| 162 | + <enabled>true</enabled> |
| 163 | + </releases> |
| 164 | + <snapshots> |
| 165 | + <enabled>false</enabled> |
| 166 | + </snapshots> |
| 167 | + </pluginRepository> |
| 168 | + <pluginRepository> |
| 169 | + <id>raptor.v3debt</id> |
| 170 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/v3debt</url> |
| 171 | + <releases> |
| 172 | + <enabled>true</enabled> |
| 173 | + </releases> |
| 174 | + <snapshots> |
| 175 | + <enabled>false</enabled> |
| 176 | + </snapshots> |
| 177 | + </pluginRepository> |
| 178 | + <pluginRepository> |
| 179 | + <id>raptor.plugins</id> |
| 180 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/plugins</url> |
| 181 | + <releases> |
| 182 | + <enabled>true</enabled> |
| 183 | + </releases> |
| 184 | + <snapshots> |
| 185 | + <enabled>false</enabled> |
| 186 | + </snapshots> |
| 187 | + </pluginRepository> |
| 188 | + <pluginRepository> |
| 189 | + <id>raptor.snapshots</id> |
| 190 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/snapshots</url> |
| 191 | + <releases> |
| 192 | + <enabled>false</enabled> |
| 193 | + </releases> |
| 194 | + <snapshots> |
| 195 | + <enabled>true</enabled> |
| 196 | + </snapshots> |
| 197 | + </pluginRepository> |
| 198 | + <pluginRepository> |
| 199 | + <id>raptor.thirdparty</id> |
| 200 | + <url>https://ebaycentral.qa.ebay.com/content/repositories/thirdparty</url> |
| 201 | + <releases> |
| 202 | + <enabled>true</enabled> |
| 203 | + </releases> |
| 204 | + <snapshots> |
| 205 | + <enabled>false</enabled> |
| 206 | + </snapshots> |
| 207 | + </pluginRepository> |
| 208 | + </pluginRepositories> |
| 209 | + </profile> |
| 210 | + </profiles> |
| 211 | + <activeProfiles> |
| 212 | + <activeProfile>ebay</activeProfile> |
| 213 | + </activeProfiles> |
| 214 | + <pluginGroups> |
| 215 | + <pluginGroup>org.mortbay.jetty</pluginGroup> |
| 216 | + <pluginGroup>com.ebay.raptor.build</pluginGroup> |
| 217 | + <pluginGroup>org.codehaus.mojo</pluginGroup> |
| 218 | + <pluginGroup>org.sonatype.maven.plugins</pluginGroup> |
| 219 | + </pluginGroups> |
| 220 | +</settings> |
0 commit comments