Merge branch '2.3.x'
Closes gh-21940
This commit is contained in:
@@ -6,6 +6,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot Deployment Tests"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude group: "org.hibernate.validator"
|
||||
|
||||
@@ -6,7 +6,9 @@ plugins {
|
||||
description = "Spring Boot Ant smoke test"
|
||||
|
||||
configurations {
|
||||
antDependencies
|
||||
antDependencies {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
testRepository
|
||||
}
|
||||
|
||||
@@ -31,7 +33,6 @@ dependencies {
|
||||
testRepository(project(path: ":spring-boot-project:spring-boot-tools:spring-boot-loader", configuration: "mavenRepository"))
|
||||
testRepository(project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter", configuration: "mavenRepository"))
|
||||
|
||||
testImplementation(platform(project(":spring-boot-project:spring-boot-dependencies")))
|
||||
testImplementation(project(path: ":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
|
||||
testImplementation("org.assertj:assertj-core")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
plugins {
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
id "org.springframework.boot.internal-dependency-management"
|
||||
}
|
||||
|
||||
description = "Spring Boot Atmosphere smoke test"
|
||||
|
||||
@@ -6,7 +6,6 @@ plugins {
|
||||
description = "Spring Boot Data R2DBC with Flyway smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(platform(project(":spring-boot-project:spring-boot-parent")))
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-r2dbc"))
|
||||
|
||||
runtimeOnly("io.r2dbc:r2dbc-postgresql")
|
||||
|
||||
@@ -6,7 +6,6 @@ plugins {
|
||||
description = "Spring Boot Data R2DBC with Liquibase smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(platform(project(":spring-boot-project:spring-boot-parent")))
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-r2dbc"))
|
||||
|
||||
runtimeOnly("io.r2dbc:r2dbc-postgresql")
|
||||
|
||||
@@ -5,6 +5,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot Jetty JSP smoke test"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly("jakarta.servlet:jakarta.servlet-api")
|
||||
compileOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty"))
|
||||
@@ -13,7 +19,6 @@ dependencies {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
providedRuntime(platform(project(":spring-boot-project:spring-boot-dependencies")))
|
||||
providedRuntime("org.eclipse.jetty:apache-jsp") {
|
||||
exclude group: "javax.annotation", module: "javax.annotation-api"
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
plugins {
|
||||
id "java"
|
||||
// id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = "Spring Boot TestNG smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(platform(project(":spring-boot-project:spring-boot-dependencies")))
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
|
||||
implementation("org.springframework:spring-webmvc")
|
||||
|
||||
@@ -5,6 +5,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot Tomcat JSP smoke test"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||||
|
||||
|
||||
@@ -5,6 +5,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot traditional deployment smoke test"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
implementation("org.springframework:spring-webmvc")
|
||||
|
||||
@@ -5,12 +5,17 @@ plugins {
|
||||
|
||||
description = "Spring Boot war smoke test"
|
||||
|
||||
configurations {
|
||||
providedCompile {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
providedCompile(platform(project(":spring-boot-project:spring-boot-dependencies")))
|
||||
providedCompile("jakarta.servlet:jakarta.servlet-api")
|
||||
|
||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||
|
||||
@@ -5,6 +5,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot web JSP smoke test"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||||
|
||||
|
||||
@@ -5,6 +5,12 @@ plugins {
|
||||
|
||||
description = "Spring Boot web static smoke test"
|
||||
|
||||
configurations {
|
||||
providedRuntime {
|
||||
extendsFrom dependencyManagement
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user