Commit c66d2e80 authored by Andy Wilkinson's avatar Andy Wilkinson

Relax the Gradle plugin's Kotlin version constraint

Enforcing the spring-boot-dependencies platform makes for too strong
an opinion about the version of Kotlin that should be on the build
script's classpath. It clashes with the version of Kotlin that's
embedded in Gradle and used with Gradle's Kotlin DSL.

This commit switches to a normal platform (rather than an enforced
platform) which allows it to express an opinion about the version of
Kotlin without making it a strict requirement.

Closes gh-19609
parent c8236a74
...@@ -26,7 +26,7 @@ repositories { ...@@ -26,7 +26,7 @@ repositories {
dependencies { dependencies {
asciidoctorExtensions 'io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.3.0.RELEASE' asciidoctorExtensions 'io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.3.0.RELEASE'
implementation enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies')) implementation platform(project(':spring-boot-project:spring-boot-dependencies'))
implementation project(':spring-boot-project:spring-boot-tools:spring-boot-loader-tools') implementation project(':spring-boot-project:spring-boot-tools:spring-boot-loader-tools')
implementation 'io.spring.gradle:dependency-management-plugin' implementation 'io.spring.gradle:dependency-management-plugin'
implementation 'org.apache.commons:commons-compress' implementation 'org.apache.commons:commons-compress'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment