Skip to content

apply plugin due to fixed issue #46748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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