Skip to content

Commit 35dc176

Browse files
committed
feat(core): update spring boot to 2.0.0.M2
1 parent ff2b1df commit 35dc176

File tree

8 files changed

+401
-43
lines changed

8 files changed

+401
-43
lines changed

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ allprojects {
1212

1313
repositories {
1414
mavenCentral()
15+
maven { setUrl("https://repo.spring.io/milestone") }
1516
}
1617

1718
}
1819

1920
buildscript {
2021

2122
val kotlinVersion = "1.1.2"
22-
val springBootVersion = "1.5.4.RELEASE"
23+
val springBootVersion = "2.0.0.M2"
2324
val gradleNodePluginVersion = "1.2.0"
2425
val dependencyManagementVersion = "1.0.3.RELEASE"
2526

@@ -29,6 +30,7 @@ buildscript {
2930
repositories {
3031
mavenCentral()
3132
maven { setUrl("https://plugins.gradle.org/m2/") }
33+
maven { setUrl("https://repo.spring.io/milestone") }
3234
}
3335

3436
dependencies {
@@ -71,7 +73,7 @@ subprojects {
7173
configure<JavaPluginConvention> {
7274
setSourceCompatibility(1.8)
7375
setTargetCompatibility(1.8)
74-
sourceSets.getByName("main").java.srcDirs("${project.buildDir}/generated/source/kapt/")
76+
sourceSets.getByName("main").java.srcDirs("${project.buildDir}/generated/source/kapt/main/")
7577
}
7678

7779
configure<NoArgExtension> {

0 commit comments

Comments
 (0)