Author: mbrohl
Date: Sat Dec 2 17:27:31 2017 New Revision: 1816968 URL: http://svn.apache.org/viewvc?rev=1816968&view=rev Log: Improved: Update build.gradle to the latest dependencies. (OFBIZ-10026) This is the first pass updating all possible dependencies. Apache Tomcat is updated to the latest 8.5.24 version. Modified: ofbiz/ofbiz-framework/trunk/build.gradle ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java Modified: ofbiz/ofbiz-framework/trunk/build.gradle URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/build.gradle?rev=1816968&r1=1816967&r2=1816968&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/build.gradle (original) +++ ofbiz/ofbiz-framework/trunk/build.gradle Sat Dec 2 17:27:31 2017 @@ -94,19 +94,19 @@ configurations { dependencies { // ofbiz compile libs compile 'apache-xerces:xercesImpl:2.9.1' - compile 'com.google.zxing:core:3.3.0' + compile 'com.google.zxing:core:3.3.1' compile 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2' compile 'com.googlecode.ez-vcard:ez-vcard:0.9.10' compile 'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20170515.1' - compile 'com.googlecode.libphonenumber:libphonenumber:8.8.3' - compile 'com.ibm.icu:icu4j:59.1' + compile 'com.googlecode.libphonenumber:libphonenumber:8.8.7' + compile 'com.ibm.icu:icu4j:60.1' compile 'com.lowagie:itext:4.2.0' compile 'com.sun.mail:javax.mail:1.6.0' compile 'com.sun.syndication:com.springsource.com.sun.syndication:0.9.0' compile 'com.thoughtworks.xstream:xstream:1.4.10' - compile 'commons-cli:commons-cli:1.3.1' - compile 'commons-net:commons-net:3.3' - compile 'commons-validator:commons-validator:1.5.1' + compile 'commons-cli:commons-cli:1.4' + compile 'commons-net:commons-net:3.6' + compile 'commons-validator:commons-validator:1.6' compile 'de.odysseus.juel:juel-impl:2.2.7' compile 'javax.el:javax.el-api:3.0.1-b04' compile 'javax.servlet:javax.servlet-api:4.0.0' @@ -121,23 +121,23 @@ dependencies { compile 'org.apache.geronimo.components:geronimo-transaction:3.1.4' compile 'org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1.1' compile 'org.apache.httpcomponents:httpclient-cache:4.5.3' - compile 'org.apache.logging.log4j:log4j-api:2.9.1' // the API of log4j 2 + compile 'org.apache.logging.log4j:log4j-api:2.10.0' // the API of log4j 2 compile 'org.apache.poi:poi:3.17' compile 'org.apache.shiro:shiro-core:1.4.0' compile 'org.apache.tika:tika-core:1.16' compile 'org.apache.tika:tika-parsers:1.16' - compile 'org.apache.tomcat:tomcat-catalina-ha:8.5.23' - compile 'org.apache.tomcat:tomcat-catalina:8.5.23' - compile 'org.apache.tomcat:tomcat-jasper:8.5.23' - compile 'org.apache.tomcat:tomcat-tribes:8.5.23' + compile 'org.apache.tomcat:tomcat-catalina-ha:8.5.24' + compile 'org.apache.tomcat:tomcat-catalina:8.5.24' + compile 'org.apache.tomcat:tomcat-jasper:8.5.24' + compile 'org.apache.tomcat:tomcat-tribes:8.5.24' compile 'org.apache.xmlgraphics:fop:2.2' compile 'org.apache.xmlrpc:xmlrpc-client:3.1.3' compile 'org.apache.xmlrpc:xmlrpc-server:3.1.3' - compile 'org.codehaus.groovy:groovy-all:2.4.12' - compile 'org.freemarker:freemarker:2.3.26-incubating' // Remember to change the version number in FreeMarkerWorker class when upgrading + compile 'org.codehaus.groovy:groovy-all:2.4.13' + compile 'org.freemarker:freemarker:2.3.27-incubating' // Remember to change the version number in FreeMarkerWorker class when upgrading compile 'org.hamcrest:hamcrest-all:1.3' compile 'org.owasp.esapi:esapi:2.1.0.1' - compile 'org.springframework:spring-test:4.2.3.RELEASE' + compile 'org.springframework:spring-test:5.0.2.RELEASE' compile 'org.zapodot:jackson-databind-java-optional:2.6.1' compile 'oro:oro:2.0.8' compile 'wsdl4j:wsdl4j:1.6.3' @@ -155,10 +155,10 @@ dependencies { runtime 'org.apache.axis2:axis2-transport-local:1.7.1' runtime 'org.apache.derby:derby:10.14.1.0' runtime 'org.apache.geronimo.specs:geronimo-jaxrpc_1.1_spec:1.1' - runtime 'org.apache.logging.log4j:log4j-1.2-api:2.9.1' // for external jars using the old log4j1.2: routes logging to log4j 2 - runtime 'org.apache.logging.log4j:log4j-core:2.9.1' // the implementation of the log4j 2 API - runtime 'org.apache.logging.log4j:log4j-jul:2.9.1' // for external jars using the java.util.logging: routes logging to log4j 2 - runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' // for external jars using slf4j: routes logging to log4j 2 + runtime 'org.apache.logging.log4j:log4j-1.2-api:2.10.0' // for external jars using the old log4j1.2: routes logging to log4j 2 + runtime 'org.apache.logging.log4j:log4j-core:2.10.0' // the implementation of the log4j 2 API + runtime 'org.apache.logging.log4j:log4j-jul:2.10.0' // for external jars using the java.util.logging: routes logging to log4j 2 + runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.10.0' // for external jars using slf4j: routes logging to log4j 2 runtime 'org.codeartisans.thirdparties.swing:batik-all:1.8pre-r1084380' // plugin libs Modified: ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java?rev=1816968&r1=1816967&r2=1816968&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java (original) +++ ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java Sat Dec 2 17:27:31 2017 @@ -71,7 +71,7 @@ public final class FreeMarkerWorker { public static final String module = FreeMarkerWorker.class.getName(); - public static final Version version = Configuration.VERSION_2_3_26; + public static final Version version = Configuration.VERSION_2_3_27; private FreeMarkerWorker () {} |
Free forum by Nabble | Edit this page |