chg: upgrade dependencies

This commit is contained in:
Tobi Schäfer 2020-03-15 12:23:18 +01:00
parent 36b5ae6279
commit 7d6fb8f903
16 changed files with 27 additions and 25 deletions

View file

@ -5,26 +5,27 @@ ant.importBuild 'build.xml'
tasks.jar.dependsOn 'mkjar'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.2'
compile group: 'commons-logging', name: 'commons-logging', version: '1.2'
compile group: 'commons-net', name: 'commons-net', version: '3.6'
compile group: 'javax.mail', name: 'mail', version: '1.4.7'
compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'
compile group: 'org.ccil.cowan.tagsoup', name: 'tagsoup', version: '1.2.1'
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version: '9.4.3.v20170317'
compile group: 'org.eclipse.jetty', name: 'jetty-xml', version: '9.4.3.v20170317'
compile group: 'org.mozilla', name: 'rhino', version: '1.7.9'
compile group: 'xerces', name: 'xercesImpl', version: '2.11.0'
// Potential replacement for apache-dom
//compile group: 'xmlrpc', name: 'xmlrpc', version: '2.0.1'
implementation 'commons-codec:commons-codec:1.10'
implementation 'commons-fileupload:commons-fileupload:1.4'
implementation 'commons-logging:commons-logging:1.2'
implementation 'commons-net:commons-net:3.6'
implementation 'com.sun.activation:javax.activation:1.2.0'
implementation 'javax.mail:javax.mail-api:1.6.2'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
implementation 'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
implementation 'org.eclipse.jetty:jetty-servlet:9.4.18.v20190429'
implementation 'org.eclipse.jetty:jetty-xml:9.4.18.v20190429'
implementation 'org.mozilla:rhino:1.7.12'
implementation 'xerces:xercesImpl:2.12.0'
implementation 'xmlrpc:xmlrpc:2.0.1'
}
task deps(type: Copy) {
from configurations.compile
from configurations.compileClasspath
into 'lib/'
}