Move tests that use Tomcat out of spring-boot-test
This commit is contained in:
parent
e290ac3f34
commit
e6d5626dab
|
@ -50,6 +50,7 @@ include "spring-boot-project:spring-boot-docs"
|
|||
include "spring-boot-project:spring-boot-parent"
|
||||
include "spring-boot-project:spring-boot-test"
|
||||
include "spring-boot-project:spring-boot-test-autoconfigure"
|
||||
include "spring-boot-project:spring-boot-test-integration-tests"
|
||||
include "spring-boot-project:spring-boot-testcontainers"
|
||||
include "spring-boot-project:spring-boot-tomcat"
|
||||
include "spring-boot-project:spring-boot-tools:spring-boot-antlib"
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
plugins {
|
||||
id "java"
|
||||
}
|
||||
|
||||
description = "Spring Boot Test Integration Tests"
|
||||
|
||||
dependencies {
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
||||
testImplementation("org.springframework:spring-webflux")
|
||||
testImplementation("org.springframework:spring-webmvc")
|
||||
testImplementation("org.springframework.graphql:spring-graphql-test")
|
||||
|
||||
testRuntimeOnly("ch.qos.logback:logback-classic")
|
||||
testRuntimeOnly("com.fasterxml.jackson.core:jackson-databind")
|
||||
}
|
|
@ -40,12 +40,10 @@ dependencies {
|
|||
optional("org.springframework:spring-webflux")
|
||||
optional("org.springframework.graphql:spring-graphql-test")
|
||||
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||
testImplementation("ch.qos.logback:logback-classic")
|
||||
testImplementation("io.mockk:mockk")
|
||||
testImplementation("jakarta.json:jakarta.json-api")
|
||||
testImplementation("ch.qos.logback:logback-classic")
|
||||
testImplementation("org.apache.tomcat.embed:tomcat-embed-core")
|
||||
testImplementation("org.apache.groovy:groovy")
|
||||
testImplementation("org.apache.groovy:groovy-xml")
|
||||
testImplementation("org.eclipse:yasson")
|
||||
|
|
|
@ -18,6 +18,7 @@ dependencies {
|
|||
exclude group: "org.apache.tomcat", module: "tomcat-annotations-api"
|
||||
}
|
||||
|
||||
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
||||
optional("org.apache.tomcat.embed:tomcat-embed-jasper")
|
||||
optional("org.springframework:spring-webflux")
|
||||
|
||||
|
|
Loading…
Reference in New Issue