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 ad4ed45 commit 78f0f7bCopy full SHA for 78f0f7b
build.gradle
@@ -7,7 +7,15 @@ buildscript {
7
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
8
}
9
repositories {
10
- maven { url 'https://repo.spring.io/plugins-snapshot' }
+ maven {
11
+ url = 'https://repo.spring.io/plugins-snapshot'
12
+ if (project.hasProperty('artifactoryUsername')) {
13
+ credentials {
14
+ username "$artifactoryUsername"
15
+ password "$artifactoryPassword"
16
+ }
17
18
19
maven { url 'https://plugins.gradle.org/m2/' }
20
21
0 commit comments