Skip to content

Commit f5d1df2

Browse files
Amit Shrivastavashrivastav13
Amit Shrivastav
authored andcommitted
REDVM-648: update usw1 reference for gradle.
1 parent 64c4106 commit f5d1df2

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

examples/redis-cache-failure-handling/build.gradle

+11-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ buildscript {
55
repositories {
66
maven {
77
url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
8+
credentials {
9+
username = System.getenv('USERNAME') ?: ''
10+
password = System.getenv('PASSWORD') ?: ''
11+
}
812
}
913
}
1014
dependencies {
@@ -22,9 +26,13 @@ version = '0.0.1-SNAPSHOT'
2226
sourceCompatibility = 17
2327

2428
repositories {
25-
maven {
26-
url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
27-
}
29+
maven {
30+
url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
31+
credentials {
32+
username = System.getenv('USERNAME') ?: ''
33+
password = System.getenv('PASSWORD') ?: ''
34+
}
35+
}
2836
}
2937

3038
dependencies {

0 commit comments

Comments
 (0)