fix frontmatter
[yosql.git] / build / settings.xml
blobf5c1e1299bb24d49e253fb1fc71eb9d75f269ce3
1 <!--
2   ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3   ~ directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4   ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained
5   ~ in the LICENSE file.
6   -->
8 <settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9           xmlns="http://maven.apache.org/SETTINGS/1.0.0"
10           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
11                       http://maven.apache.org/xsd/settings-1.0.0.xsd">
13     <activeProfiles>
14         <activeProfile>github</activeProfile>
15     </activeProfiles>
16     <profiles>
17         <profile>
18             <id>github</id>
19             <activation>
20                 <activeByDefault>true</activeByDefault>
21             </activation>
22             <repositories>
23                 <repository>
24                     <id>central</id>
25                     <url>https://repo1.maven.org/maven2</url>
26                     <releases>
27                         <enabled>true</enabled>
28                     </releases>
29                     <snapshots>
30                         <enabled>false</enabled>
31                     </snapshots>
32                 </repository>
33                 <repository>
34                     <id>maven-build-process</id>
35                     <name>GitHub maven-build-process Apache Maven Packages</name>
36                     <url>https://maven.pkg.github.com/metio/maven-build-process</url>
37                     <releases>
38                         <enabled>true</enabled>
39                     </releases>
40                     <snapshots>
41                         <enabled>true</enabled>
42                     </snapshots>
43                 </repository>
44             </repositories>
45         </profile>
46     </profiles>
48     <servers>
49         <server>
50             <id>github</id>
51             <username>${env.GITHUB_ACTOR}</username>
52             <password>${env.GITHUB_TOKEN}</password>
53         </server>
54         <server>
55             <id>maven-build-process</id>
56             <username>${env.GITHUB_ACTOR}</username>
57             <password>${env.GITHUB_TOKEN}</password>
58         </server>
59     </servers>
61     <mirrors>
62         <mirror>
63             <id>google-maven-central</id>
64             <name>GCS Maven Central Mirror</name>
65             <url>https://maven-central.storage-download.googleapis.com/maven2/</url>
66             <mirrorOf>central</mirrorOf>
67         </mirror>
68     </mirrors>
69 </settings>