Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ plugins {
id 'org.springframework.boot' version '{version}'
}

apply plugin: 'org.jetbrains.kotlin.jvm'

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

tasks.withType(KotlinCompile) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ plugins {
id 'org.springframework.boot' version '{version}'
}

apply plugin: 'org.jetbrains.kotlin.jvm'

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

task('kotlinCompileTasksJavaParameters') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ plugins {
}

apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.jetbrains.kotlin.jvm'

dependencyManagement {
resolutionStrategy {
eachDependency {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ plugins {
id 'org.springframework.boot' version '{version}'
}

apply plugin: 'org.jetbrains.kotlin.jvm'

tasks.configureEach {
println "Configuring ${it.path}"
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

plugins {
id "base"
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
id "org.jetbrains.kotlin.jvm"
}

description = "Spring Boot Build"
Expand Down
Loading