Move JavaUtilLoggingConfigurer to spring-core test fixtures
See gh-23550
This commit is contained in:
parent
92a28392db
commit
081b3d304d
|
|
@ -60,11 +60,12 @@ dependencies {
|
||||||
testCompile("javax.xml.bind:jaxb-api")
|
testCompile("javax.xml.bind:jaxb-api")
|
||||||
testCompile("com.fasterxml.woodstox:woodstox-core")
|
testCompile("com.fasterxml.woodstox:woodstox-core")
|
||||||
testCompile(project(":kotlin-coroutines"))
|
testCompile(project(":kotlin-coroutines"))
|
||||||
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
||||||
testFixturesApi("org.junit.jupiter:junit-jupiter-params")
|
|
||||||
testFixturesImplementation("com.google.code.findbugs:jsr305")
|
testFixturesImplementation("com.google.code.findbugs:jsr305")
|
||||||
testFixturesImplementation("io.projectreactor:reactor-test")
|
testFixturesImplementation("io.projectreactor:reactor-test")
|
||||||
testFixturesImplementation("org.assertj:assertj-core")
|
testFixturesImplementation("org.assertj:assertj-core")
|
||||||
|
testFixturesImplementation("org.junit.platform:junit-platform-launcher")
|
||||||
|
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api")
|
||||||
|
testFixturesImplementation("org.junit.jupiter:junit-jupiter-params")
|
||||||
testFixturesImplementation("org.xmlunit:xmlunit-assertj")
|
testFixturesImplementation("org.xmlunit:xmlunit-assertj")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2019 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.web.reactive.fixtures;
|
package org.springframework.core.testfixture;
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.logging.LogManager;
|
import java.util.logging.LogManager;
|
||||||
|
|
@ -46,7 +46,6 @@ dependencies {
|
||||||
testCompile("org.eclipse.jetty:jetty-server")
|
testCompile("org.eclipse.jetty:jetty-server")
|
||||||
testCompile("org.eclipse.jetty:jetty-servlet")
|
testCompile("org.eclipse.jetty:jetty-servlet")
|
||||||
testCompile("org.eclipse.jetty:jetty-reactive-httpclient")
|
testCompile("org.eclipse.jetty:jetty-reactive-httpclient")
|
||||||
testCompile("org.junit.platform:junit-platform-launcher")
|
|
||||||
testCompile("com.squareup.okhttp3:mockwebserver")
|
testCompile("com.squareup.okhttp3:mockwebserver")
|
||||||
testCompile("org.jetbrains.kotlin:kotlin-script-runtime")
|
testCompile("org.jetbrains.kotlin:kotlin-script-runtime")
|
||||||
testRuntime("org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable")
|
testRuntime("org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable")
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
org.springframework.web.reactive.fixtures.JavaUtilLoggingConfigurer
|
org.springframework.core.testfixture.JavaUtilLoggingConfigurer
|
||||||
Loading…
Reference in New Issue