-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings_github.xml
50 lines (47 loc) · 1.41 KB
/
settings_github.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<settings xmlns="https://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<activeProfiles>
<activeProfile>github</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>github</id>
<name>GitHub yahoojapan Apache Maven Packages</name>
<url>https://maven.pkg.github.com/yahoojapan/k2hash_java</url>
</repository>
</repositories>
</profile>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg2</gpg.executable>
<gpg.passphrase>${env.GNUPG_TOKEN}</gpg.passphrase>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>github</id>
<password>${env.GITPAGES_TOKEN}</password>
</server>
<server>
<id>ossrh</id>
<username>Wakabayashi</username>
<password>${env.SONATYPE_TOKEN}</password>
</server>
</servers>
</settings>