File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
1
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
2
3
3
plugins {
4
- id(" org.springframework.boot" ) version " 2.6.3 "
4
+ id(" org.springframework.boot" ) version " 2.6.6 "
5
5
id(" io.spring.dependency-management" ) version " 1.0.11.RELEASE"
6
6
kotlin(" jvm" ) version " 1.6.10"
7
7
kotlin(" kapt" ) version " 1.6.10"
@@ -13,10 +13,10 @@ java.sourceCompatibility = JavaVersion.VERSION_11
13
13
val kofuVersion = " 0.5.1"
14
14
15
15
repositories {
16
- maven {
17
- url = uri(" https://repo.spring.io/milestone" )
18
- }
16
+ mavenLocal()
19
17
mavenCentral()
18
+ maven(" https://repo.spring.io/milestone" )
19
+ maven(" https://repo.spring.io/snapshot" )
20
20
}
21
21
22
22
dependencies {
Original file line number Diff line number Diff line change 1
1
rootProject.name = " kofu-tutorial"
2
+
3
+ pluginManagement {
4
+ repositories {
5
+ gradlePluginPortal()
6
+ maven(" https://repo.spring.io/milestone" )
7
+ maven(" https://repo.spring.io/snapshot" )
8
+ }
9
+ resolutionStrategy {
10
+ eachPlugin {
11
+ if (requested.id.id == " org.springframework.boot" ) {
12
+ useModule(" org.springframework.boot:spring-boot-gradle-plugin:${requested.version} " )
13
+ }
14
+ }
15
+ }
16
+ }
17
+
You can’t perform that action at this time.
0 commit comments