chg: upgrade dependencies

This commit is contained in:
Tobi Schäfer 2020-03-15 12:23:18 +01:00
parent 1bc6653499
commit c0cbe38fc5
28 changed files with 27 additions and 25 deletions

View file

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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lib/rhino-1.7.12.jar Normal file

Binary file not shown.

BIN
lib/xercesImpl-2.12.0.jar Normal file

Binary file not shown.

BIN
lib/xml-apis-1.4.01.jar Normal file

Binary file not shown.

View file

@ -36,20 +36,21 @@ import java.util.ArrayList;
public class Main { public class Main {
public static final String[] jars = { public static final String[] jars = {
"commons-codec-1-10.jar", "commons-codec-1-10.jar",
"commons-fileupload-1.3.2.jar", "commons-fileupload-1.4.jar",
"commons-io-2.2.jar", "commons-io-2.2.jar",
"commons-logging-1.2.jar", "commons-logging-1.2.jar",
"commons-net-3.5.jar", "commons-net-3.6.jar",
"helma.jar", "helma.jar",
"javax.servlet-api-3.1.0.jar", "javax.activation-1.2.0.jar",
"jetty-http-9.4.3.v20170317.jar", "javax.servlet-api-4.0.1.jar",
"jetty-io-9.4.3.v20170317.jar", "jetty-http-9.4.18.v20190429.jar",
"jetty-security-9.4.3.v20170317.jar", "jetty-io-9.4.18.v20190429.jar",
"jetty-server-9.4.3.v20170317.jar", "jetty-security-9.4.18.v20190429.jar",
"jetty-servlet-9.4.3.v20170317.jar", "jetty-server-9.4.18.v20190429.jar",
"jetty-util-9.4.3.v20170317.jar", "jetty-servlet-9.4.18.v20190429.jar",
"jetty-xml-9.4.3.v20170317.jar", "jetty-util-9.4.18.v20190429.jar",
"mail-1.4.7.jar", "jetty-xml-9.4.18.v20190429.jar",
"javax.mail-api-1.6.2.jar",
"rhino-1.7.9.jar", "rhino-1.7.9.jar",
"tagsoup-1.2.1.jar", "tagsoup-1.2.1.jar",
"xmlrpc-2.0.1.jar" "xmlrpc-2.0.1.jar"