Remove unused dependency management from spring-boot-parent
See gh-43584
This commit is contained in:
parent
60e0de79ea
commit
681d4c2744
@ -168,8 +168,8 @@ bom {
|
|||||||
}
|
}
|
||||||
library("OkHttp", "4.12.0") {
|
library("OkHttp", "4.12.0") {
|
||||||
group("com.squareup.okhttp3") {
|
group("com.squareup.okhttp3") {
|
||||||
imports = [
|
modules = [
|
||||||
"okhttp-bom"
|
"mockwebserver"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -210,8 +210,8 @@ bom {
|
|||||||
}
|
}
|
||||||
library("Spock Framework", "2.3-groovy-4.0") {
|
library("Spock Framework", "2.3-groovy-4.0") {
|
||||||
group("org.spockframework") {
|
group("org.spockframework") {
|
||||||
imports = [
|
modules = [
|
||||||
"spock-bom"
|
"spock-core"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,6 @@ dependencies {
|
|||||||
testImplementation("io.mockk:mockk")
|
testImplementation("io.mockk:mockk")
|
||||||
testImplementation("jakarta.json:jakarta.json-api")
|
testImplementation("jakarta.json:jakarta.json-api")
|
||||||
testImplementation("ch.qos.logback:logback-classic")
|
testImplementation("ch.qos.logback:logback-classic")
|
||||||
testImplementation("com.squareup.okhttp3:okhttp")
|
|
||||||
testImplementation("org.apache.tomcat.embed:tomcat-embed-core")
|
testImplementation("org.apache.tomcat.embed:tomcat-embed-core")
|
||||||
testImplementation("org.apache.groovy:groovy")
|
testImplementation("org.apache.groovy:groovy")
|
||||||
testImplementation("org.apache.groovy:groovy-xml")
|
testImplementation("org.apache.groovy:groovy-xml")
|
||||||
|
@ -106,7 +106,6 @@ dependencies {
|
|||||||
testImplementation("com.jayway.jsonpath:json-path")
|
testImplementation("com.jayway.jsonpath:json-path")
|
||||||
testImplementation("com.microsoft.sqlserver:mssql-jdbc")
|
testImplementation("com.microsoft.sqlserver:mssql-jdbc")
|
||||||
testImplementation("com.mysql:mysql-connector-j")
|
testImplementation("com.mysql:mysql-connector-j")
|
||||||
testImplementation("com.squareup.okhttp3:okhttp")
|
|
||||||
testImplementation("com.sun.xml.messaging.saaj:saaj-impl")
|
testImplementation("com.sun.xml.messaging.saaj:saaj-impl")
|
||||||
testImplementation("io.projectreactor:reactor-test")
|
testImplementation("io.projectreactor:reactor-test")
|
||||||
testImplementation("io.r2dbc:r2dbc-h2")
|
testImplementation("io.r2dbc:r2dbc-h2")
|
||||||
|
@ -78,14 +78,6 @@ class ClientHttpRequestFactoriesTests {
|
|||||||
assertThat(requestFactory).isInstanceOf(ReactorClientHttpRequestFactory.class);
|
assertThat(requestFactory).isInstanceOf(ReactorClientHttpRequestFactory.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
void getOfOkHttpFactoryReturnsOkHttpFactory() {
|
|
||||||
ClientHttpRequestFactory requestFactory = ClientHttpRequestFactories.get(
|
|
||||||
org.springframework.http.client.OkHttp3ClientHttpRequestFactory.class,
|
|
||||||
ClientHttpRequestFactorySettings.DEFAULTS);
|
|
||||||
assertThat(requestFactory).isInstanceOf(org.springframework.http.client.OkHttp3ClientHttpRequestFactory.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void getOfJdkFactoryReturnsJdkFactory() {
|
void getOfJdkFactoryReturnsJdkFactory() {
|
||||||
ClientHttpRequestFactory requestFactory = ClientHttpRequestFactories.get(JdkClientHttpRequestFactory.class,
|
ClientHttpRequestFactory requestFactory = ClientHttpRequestFactories.get(JdkClientHttpRequestFactory.class,
|
||||||
|
@ -9,5 +9,5 @@ dependencies {
|
|||||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||||||
|
|
||||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||||
testImplementation("com.squareup.okhttp3:mockwebserver:3.9.0")
|
testImplementation("com.squareup.okhttp3:mockwebserver")
|
||||||
}
|
}
|
||||||
|
@ -9,5 +9,5 @@ dependencies {
|
|||||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
|
||||||
|
|
||||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||||
testImplementation("com.squareup.okhttp3:mockwebserver:3.9.0")
|
testImplementation("com.squareup.okhttp3:mockwebserver")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user