We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae013dd commit 3f7c9d3Copy full SHA for 3f7c9d3
secretscache/gradle/build.gradle
@@ -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
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0
+ http://maven.apache.org/xsd/settings-1.1.0.xsd">
+ <servers>
+ <server>
+ <id>maven-repo-public</id>
+ <username>admin</username>
10
+ <password>notapassword</password>
11
+ </server>
12
+ </servers>
13
+</settings>
0 commit comments