tomcat.gradle 379 B

12345678910
  1. apply plugin: 'tomcat'
  2. dependencies {
  3. def tomcatVersion = '7.0.54'
  4. tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
  5. "org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}"
  6. tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}") {
  7. exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj'
  8. }
  9. }