|
@@ -6,7 +6,15 @@ buildscript {
|
|
|
classpath "io.freefair.gradle:aspectj-plugin:4.0.2"
|
|
|
}
|
|
|
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/' }
|
|
|
}
|
|
|
}
|