Browse Source

Consistent use of annotation-api dependency instead of tomcat-embed-core

pull/27217/head
Juergen Hoeller 6 years ago
parent
commit
3fbe762832
  1. 2
      spring-beans/spring-beans.gradle
  2. 1
      spring-core/spring-core.gradle

2
spring-beans/spring-beans.gradle

@ -9,7 +9,7 @@ dependencies {
optional("org.codehaus.groovy:groovy-xml:${groovyVersion}") optional("org.codehaus.groovy:groovy-xml:${groovyVersion}")
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}") optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}") optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}") testCompile("javax.annotation:javax.annotation-api:1.3.2")
} }
// This module does joint compilation for Java and Groovy code with the compileGroovy task. // This module does joint compilation for Java and Groovy code with the compileGroovy task.

1
spring-core/spring-core.gradle

@ -79,7 +79,6 @@ dependencies {
optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}") optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
optional("io.netty:netty-buffer") optional("io.netty:netty-buffer")
testCompile("io.projectreactor:reactor-test") testCompile("io.projectreactor:reactor-test")
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
testCompile("javax.annotation:javax.annotation-api:1.3.2") testCompile("javax.annotation:javax.annotation-api:1.3.2")
testCompile("com.google.code.findbugs:jsr305:3.0.2") testCompile("com.google.code.findbugs:jsr305:3.0.2")
testCompile("org.xmlunit:xmlunit-matchers:2.6.2") testCompile("org.xmlunit:xmlunit-matchers:2.6.2")

Loading…
Cancel
Save