spring-security/gradle/tomcat.gradle

10 lines
379 B
Groovy
Raw Permalink Normal View History

2013-08-05 16:22:33 -05:00
apply plugin: 'tomcat'
dependencies {
2014-06-12 10:47:41 -05:00
def tomcatVersion = '7.0.54'
2013-08-05 16:22:33 -05:00
tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}"
tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}") {
exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj'
}
}