-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
74 lines (69 loc) · 2.07 KB
/
settings.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8" ?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<!-- NOTE: use gradle to publish daggerok-context -->
<servers>
<!-- maven central -->
<server>
<id>ossrh</id>
<username>daggerok</username>
<password>**********</password>
</server>
<!-- bintray -->
<server>
<id>bintray-daggerok-daggerok</id>
<username>daggerok</username>
<password>**********</password>
</server>
</servers>
<!-- pom.xml: -->
<!--
<distributionManagement>
<repository>
<id>bintray-daggerok</id>
<name>daggerok-daggerok</name>
<url>https://api.bintray.com/maven/daggerok/daggerok/daggerok-context/;publish=1</url>
</repository>
</distributionManagement>
-->
<profiles>
<!-- maven central -->
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg2</gpg.executable> <!-- brew install [email protected] -->
<gpg.passphrase>**********</gpg.passphrase>
</properties>
</profile>
<!-- bintray -->
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-daggerok-daggerok</id>
<name>bintray</name>
<url>https://dl.bintray.com/daggerok/daggerok</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-daggerok-daggerok</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/daggerok/daggerok</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>