From c20b771db673191be27d896d1bf1b31bd6dd0e7e Mon Sep 17 00:00:00 2001
From: Nikolaus Krismer <nikolaus.krismer@uibk.ac.at>
Date: Thu, 26 Jun 2014 21:20:36 +0200
Subject: [PATCH] fixed version problems with jdk8/tomcat8 (seems like major
 version has to be set for commons-io to work correctly in isochrone-web)

---
 build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.gradle b/build.gradle
index 5e44adb1..dbbc9701 100644
--- a/build.gradle
+++ b/build.gradle
@@ -125,10 +125,10 @@ buildscript {
 }
 
 dependencies {
-	compile group: 'commons-io', name: 'commons-io', version: '+'
-	compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '+'
+	compile group: 'commons-io', name: 'commons-io', version: '2.+'
+	compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.+'
 	compile group: 'com.jolbox', name: 'bonecp', version: '+'
-	compile group: 'com.tngtech.java', name: 'config-builder', version: '+'
+	compile group: 'com.tngtech.java', name: 'config-builder', version: '1.+'
 	compile group: 'org.postgresql', name: 'postgresql', version: '9.2-1004-jdbc41'
 
 	runtime 'org.slf4j:jcl-over-slf4j:1+'
-- 
GitLab