This repository was archived by the owner on Dec 4, 2025. It is now read-only.
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 11import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22
33plugins {
4- id(" org.springframework.boot" ) version " 2.6.3 "
4+ id(" org.springframework.boot" ) version " 2.6.6 "
55 id(" io.spring.dependency-management" ) version " 1.0.11.RELEASE"
66 kotlin(" jvm" ) version " 1.6.10"
77 kotlin(" kapt" ) version " 1.6.10"
@@ -13,10 +13,10 @@ java.sourceCompatibility = JavaVersion.VERSION_11
1313val kofuVersion = " 0.5.1"
1414
1515repositories {
16- maven {
17- url = uri(" https://repo.spring.io/milestone" )
18- }
16+ mavenLocal()
1917 mavenCentral()
18+ maven(" https://repo.spring.io/milestone" )
19+ maven(" https://repo.spring.io/snapshot" )
2020}
2121
2222dependencies {
Original file line number Diff line number Diff line change 11rootProject.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