Skip to content

Commit 69e99f1

Browse files
committed
Added settings.xml
1 parent 453e243 commit 69e99f1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

build/settings.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
4+
https://maven.apache.org/xsd/settings-1.0.0.xsd"
5+
>
6+
<servers>
7+
<server>
8+
<id>javawebstack-snapshots</id>
9+
<username>${env.DEPLOYMENT_USERNAME}</username>
10+
<password>${env.DEPLOYMENT_PASSWORD}</password>
11+
</server>
12+
<server>
13+
<id>javawebstack-releases</id>
14+
<username>${env.DEPLOYMENT_USERNAME}</username>
15+
<password>${env.DEPLOYMENT_PASSWORD}</password>
16+
</server>
17+
</servers>
18+
</settings>

0 commit comments

Comments
 (0)