Merge branch '3.2.x' into 3.3.x

Closes gh-42713
This commit is contained in:
Andy Wilkinson 2024-10-16 12:09:15 +01:00
commit 4b89ba7d20
8 changed files with 9 additions and 16 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.apache.tomcat.embed:tomcat-embed-core")
}

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

@ -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")
}

View File

@ -7,8 +7,6 @@ plugins {
id "war"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../test-repository"}
mavenCentral()
@ -50,6 +48,7 @@ dependencies {
compileOnly("org.eclipse.jetty.ee10:jetty-ee10-servlet")
compileOnly("org.springframework:spring-web")
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter")
app(files(resourcesJar))

View File

@ -3,8 +3,6 @@ plugins {
id "org.springframework.boot"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../int-test-maven-repository"}
mavenCentral()
@ -13,5 +11,6 @@ repositories {
}
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-web")
}

View File

@ -5,8 +5,6 @@ plugins {
id "org.springframework.boot" version "3.3.0-SNAPSHOT"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../int-test-maven-repository"}
mavenCentral()
@ -32,6 +30,7 @@ configurations {
dependencies {
compileOnly("org.springframework:spring-webflux")
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-actuator")

View File

@ -5,8 +5,6 @@ plugins {
id "org.springframework.boot" version "3.3.0-SNAPSHOT"
}
apply plugin: "io.spring.dependency-management"
repositories {
maven { url "file:${rootDir}/../int-test-maven-repository"}
mavenCentral()
@ -28,6 +26,8 @@ configurations {
dependencies {
compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-web") {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}