- updated Gradle to 8.3 - downgraded Spring Framework JAR in the SCC Gradle plugin due to https://github.com/gradle/gradle/issues/25434
15 lines
404 B
Groovy
15 lines
404 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
gradlePluginPortal()
|
|
}
|
|
plugins {
|
|
id 'org.springframework.boot' version "${bootVersion}"
|
|
id "io.spring.dependency-management" version "1.1.3"
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'http-client-webclient-gradle'
|