|
| 1 | +<!-- |
| 2 | + ~ Copyright (c) 2021 Red Hat, Inc. |
| 3 | + ~ |
| 4 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + ~ you may not use this file except in compliance with the License. |
| 6 | + ~ You may obtain a copy of the License at |
| 7 | + ~ |
| 8 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + ~ |
| 10 | + ~ Unless required by applicable law or agreed to in writing, software |
| 11 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + ~ See the License for the specific language governing permissions and |
| 14 | + ~ limitations under the License. |
| 15 | + --> |
| 16 | + |
| 17 | +<settings> |
| 18 | + |
| 19 | + <interactiveMode>false</interactiveMode> |
| 20 | + |
| 21 | + <servers> |
| 22 | + <server> |
| 23 | + <id>sonatype-snapshots-repository</id> |
| 24 | + <username>${env.SONATYPE_NEXUS_USERNAME}</username> |
| 25 | + <password>${env.SONATYPE_NEXUS_PASSWORD}</password> |
| 26 | + </server> |
| 27 | + </servers> |
| 28 | + |
| 29 | + <profiles> |
| 30 | + <profile> |
| 31 | + <id>google-mirror</id> |
| 32 | + <activation> |
| 33 | + <activeByDefault>true</activeByDefault> |
| 34 | + </activation> |
| 35 | + <repositories> |
| 36 | + <repository> |
| 37 | + <id>google-maven-central</id> |
| 38 | + <name>GCS Maven Central mirror EU</name> |
| 39 | + <url>https://maven-central.storage-download.googleapis.com/maven2/</url> |
| 40 | + <releases> |
| 41 | + <enabled>true</enabled> |
| 42 | + </releases> |
| 43 | + <snapshots> |
| 44 | + <enabled>false</enabled> |
| 45 | + </snapshots> |
| 46 | + </repository> |
| 47 | + </repositories> |
| 48 | + <pluginRepositories> |
| 49 | + <pluginRepository> |
| 50 | + <id>google-maven-central</id> |
| 51 | + <name>GCS Maven Central mirror</name> |
| 52 | + <url>https://maven-central.storage-download.googleapis.com/maven2/</url> |
| 53 | + <releases> |
| 54 | + <enabled>true</enabled> |
| 55 | + </releases> |
| 56 | + <snapshots> |
| 57 | + <enabled>false</enabled> |
| 58 | + </snapshots> |
| 59 | + </pluginRepository> |
| 60 | + </pluginRepositories> |
| 61 | + </profile> |
| 62 | + </profiles> |
| 63 | +</settings> |
0 commit comments