We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c4106 commit f5d1df2Copy full SHA for f5d1df2
examples/redis-cache-failure-handling/build.gradle
@@ -5,6 +5,10 @@ buildscript {
5
repositories {
6
maven {
7
url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
8
+ credentials {
9
+ username = System.getenv('USERNAME') ?: ''
10
+ password = System.getenv('PASSWORD') ?: ''
11
+ }
12
}
13
14
dependencies {
@@ -22,9 +26,13 @@ version = '0.0.1-SNAPSHOT'
22
26
sourceCompatibility = 17
23
27
24
28
25
- maven {
- url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
- }
29
+ maven {
30
+ url System.getenv('CICD_ARTIFACTORY_URL') ?: ''
31
32
33
34
35
36
37
38
0 commit comments