Skip to content

Commit

Permalink
chore(dev-deps): tomcat 8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Apr 19, 2021
1 parent 287ccfe commit 285290a
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ buildscript {
}

dependencies {
classpath 'com.bmuschko:gradle-tomcat-plugin:2.3'
classpath 'com.bmuschko:gradle-tomcat-plugin:2.5'
//classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3'
//classpath 'org.ajoberstar:gradle-git:1.6.0'
}
Expand Down Expand Up @@ -58,18 +58,22 @@ dependencies {

providedCompile('javax.servlet:servlet-api:2.5')

def tomcatVersion = '8.5.2' // must not exclude eclipse compiler since version 7.0.59
def tomcatVersion = '8.5.16'

tomcat(
"org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}",
)
tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-logging-juli:8.5.2",
"org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}"

runtime('log4j:log4j:1.2.17')
}


tomcat {
httpProtocol = 'org.apache.coyote.http11.Http11Nio2Protocol'
ajpProtocol = 'org.apache.coyote.ajp.AjpNio2Protocol'
}


// When testing you can specify your local PHP executable as a system property with
// -Dphp_exec=/path/to/php-executabale on the Gradle command line
// Default value is "php" which should work both on Linux and Windows for most standard PHP installations.
Expand Down

0 comments on commit 285290a

Please sign in to comment.