Use platform dependencies instead of the dependency management plugin

Closes gh-42712
This commit is contained in:
Andy Wilkinson
2024-10-16 12:08:44 +01:00
parent f163aa31a8
commit 2c982260df
5 changed files with 5 additions and 10 deletions

View File

@@ -3,8 +3,6 @@ plugins {
id "org.springframework.boot"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../docker-test-maven-repository"}
mavenCentral()
@@ -12,6 +10,7 @@ repositories {
}
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.webjars:jquery:3.5.0")
}

View File

@@ -5,8 +5,6 @@ plugins {
id "org.springframework.boot"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../docker-test-maven-repository"}
mavenCentral()
@@ -14,6 +12,7 @@ repositories {
}
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")
}