We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f2fa94 commit 3d5f5c6Copy full SHA for 3d5f5c6
build.gradle
@@ -76,4 +76,13 @@ test {
76
repositories {
77
mavenCentral()
78
mavenLocal()
79
-}
+ maven {
80
+ def artifactoryUrl = System.getenv("ARTIFACTORY_URL") ?: System.getProperty("artifactory_contextUrl")
81
+ println("Using Artifactory URL in build.gradle: ${artifactoryUrl}/ab2d-main")
82
+ url = "${artifactoryUrl}/ab2d-main"
83
+ credentials {
84
+ username = System.getenv("ARTIFACTORY_USER") ?: System.getProperty("username")
85
+ password = System.getenv("ARTIFACTORY_PASSWORD") ?: System.getProperty("password")
86
+ }
87
88
+}
0 commit comments