diff --git a/spring-core/spring-core.gradle b/spring-core/spring-core.gradle index fc7c299e5d0..6c72e4daccd 100644 --- a/spring-core/spring-core.gradle +++ b/spring-core/spring-core.gradle @@ -55,20 +55,20 @@ dependencies { optional("io.reactivex.rxjava3:rxjava") optional("io.netty:netty-buffer") testCompile("io.projectreactor:reactor-test") - testCompile("javax.annotation:javax.annotation-api") testCompile("com.google.code.findbugs:jsr305") - testCompile("org.xmlunit:xmlunit-assertj") - testCompile("org.xmlunit:xmlunit-matchers") + testCompile("javax.annotation:javax.annotation-api") testCompile("javax.xml.bind:jaxb-api") testCompile("com.fasterxml.woodstox:woodstox-core") + testCompile("org.xmlunit:xmlunit-assertj") + testCompile("org.xmlunit:xmlunit-matchers") testCompile(project(":kotlin-coroutines")) testCompile("io.projectreactor.tools:blockhound") - testFixturesImplementation("com.google.code.findbugs:jsr305") testFixturesImplementation("io.projectreactor:reactor-test") - testFixturesImplementation("org.assertj:assertj-core") + testFixturesImplementation("com.google.code.findbugs:jsr305") testFixturesImplementation("org.junit.platform:junit-platform-launcher") testFixturesImplementation("org.junit.jupiter:junit-jupiter-api") testFixturesImplementation("org.junit.jupiter:junit-jupiter-params") + testFixturesImplementation("org.assertj:assertj-core") testFixturesImplementation("org.xmlunit:xmlunit-assertj") } @@ -99,7 +99,7 @@ jar { } test { - // make sure the classes dir is used on the test classpath (required by ResourceTests) + // Make sure the classes dir is used on the test classpath (required by ResourceTests) // When test fixtures are involved, the JAR is used by default classpath = sourceSets.main.output.classesDirs + classpath - files(jar.archiveFile) -} \ No newline at end of file +}