Skip to content

Commit 3f7c9d3

Browse files
committed
add a few mor secrets for #201
1 parent ae013dd commit 3f7c9d3

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

secretscache/gradle/build.gradle

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
repositories {
2+
maven {
3+
url "http://repo.mycompany.com"
4+
credentials {
5+
username "aadmin"
6+
password "notapassword"
7+
}
8+
}
9+
}

secretscache/mvn/settings.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0
5+
http://maven.apache.org/xsd/settings-1.1.0.xsd">
6+
<servers>
7+
<server>
8+
<id>maven-repo-public</id>
9+
<username>admin</username>
10+
<password>notapassword</password>
11+
</server>
12+
</servers>
13+
</settings>

0 commit comments

Comments
 (0)