Skip to content

Commit 606146c

Browse files
committed
Fix Plugin Repos
1 parent 5e93c36 commit 606146c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ buildscript {
44
repositories {
55
mavenCentral()
66
gradlePluginPortal()
7-
maven { url 'https://repo.spring.io/plugins-release' }
7+
maven { url 'https://repo.spring.io/plugins-release-local' }
8+
if (version.endsWith('SNAPSHOT')) {
9+
maven { url 'https://repo.spring.io/snapshot' }
10+
}
811
}
912
dependencies {
1013
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"

0 commit comments

Comments
 (0)