Skip to content

Commit 5606fd5

Browse files
committed
Password for plugins
1 parent aaf7833 commit 5606fd5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ buildscript {
77
classpath "com.netflix.nebula:nebula-project-plugin:8.2.0"
88
}
99
repositories {
10-
maven { url 'https://repo.spring.io/plugins-snapshot' }
10+
maven {
11+
url 'https://repo.spring.io/plugins-release'
12+
if (project.hasProperty('artifactoryUsername')) {
13+
credentials {
14+
username = project.artifactoryUsername
15+
password = project.artifactoryPassword
16+
}
17+
}
18+
}
1119
maven { url 'https://plugins.gradle.org/m2/' }
1220
}
1321
}

0 commit comments

Comments
 (0)