-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathoverture_settings.xml
38 lines (32 loc) · 1.17 KB
/
overture_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
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- You will only need the two Sonatype server entries if you plan
to either deploy snapshots to the sonatype servers or perform
full releases.
-->
<servers>
<server>
<id>sonatype-nexus-snapshots</id>
<username>your-sonatype-username</username>
<password>your-sonatype-password</password>
</server>
<server>
<id>sonatype-nexus-staging</id>
<username>your-sonatype-username</username>
<password>your-sonatype-password</password>
</server>
</servers>
<profiles>
<profile>
<id>codesigning</id>
<properties>
<keystore.path>file:///path/to/build.overture.au.dk.jks</keystore.path>
<keystore.alias>build.overture.au.dk</keystore.alias>
<keystore.type>JKS</keystore.type>
<keystore.store.password>secret-password</keystore.store.password>
<keystore.key.password>secret-password</keystore.key.password>
</properties>
</profile>
</profiles>
</settings>