|
@@ -5,7 +5,15 @@ buildscript {
|
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
|
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
|
|
}
|
|
}
|
|
repositories {
|
|
repositories {
|
|
- maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
|
|
|
|
+ maven {
|
|
|
|
+ url = 'https://repo.spring.io/plugins-snapshot'
|
|
|
|
+ if (project.hasProperty('artifactoryUsername')) {
|
|
|
|
+ credentials {
|
|
|
|
+ username "$artifactoryUsername"
|
|
|
|
+ password "$artifactoryPassword"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
}
|
|
}
|
|
}
|
|
}
|