From ac229d51acabfd74b1326d721350e3eed59f8744 Mon Sep 17 00:00:00 2001
From: Nikolaus Krismer <niko@krismer.de>
Date: Fri, 13 Jun 2014 23:39:44 +0200
Subject: [PATCH] switching dependency versioning to mostly latest version

---
 build.gradle | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/build.gradle b/build.gradle
index ea6d1713..9a9c205f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,12 +1,12 @@
 // Plugin declaration
 
-apply plugin: 'asciidoctor'
 apply plugin: 'eclipse'
 apply plugin: 'findbugs'
 apply plugin: 'jacoco'
 apply plugin: 'java'
 apply plugin: 'jdepend'
 apply plugin: 'maven-publish'
+apply plugin: 'org.asciidoctor.gradle.asciidoctor'
 apply plugin: 'vagrant'
 apply plugin: 'wrapper'
 
@@ -122,21 +122,21 @@ buildscript {
 	}
 
 	dependencies {
-		classpath 'org.gradle.api.plugins:gradle-vagrant-plugin:0.5'
-		classpath 'org.asciidoctor:asciidoctor-gradle-plugin:0.7.0'
+		classpath 'org.gradle.api.plugins:gradle-vagrant-plugin:+'
+		classpath 'org.asciidoctor:asciidoctor-gradle-plugin:+'
 	}
 }
 
 dependencies {
-	compile group: 'commons-dbutils', name: 'commons-dbutils', version:'1.2'
-	compile group: 'commons-io', name: 'commons-io', version:'2.4'
-	compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.3.0'
-	compile group: 'com.jolbox', name: 'bonecp', version: '0.8.0.RELEASE'
-	compile group: 'com.tngtech.java', name: 'config-builder', version: '1.2'
-	compile group: 'org.postgresql', name: 'postgresql', version:'9.2-1004-jdbc41'
-
-	runtime 'org.slf4j:jcl-over-slf4j:1.7.5'
-	runtime 'ch.qos.logback:logback-classic:1.0.13'
+	compile group: 'commons-dbutils', name: 'commons-dbutils', version: '+'
+	compile group: 'commons-io', name: 'commons-io', version: '+'
+	compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '+'
+	compile group: 'com.jolbox', name: 'bonecp', version: '+'
+	compile group: 'com.tngtech.java', name: 'config-builder', version: '+'
+	compile group: 'org.postgresql', name: 'postgresql', version: '9.2-1004-jdbc41'
+
+	runtime 'org.slf4j:jcl-over-slf4j:1+'
+	runtime 'ch.qos.logback:logback-classic:1+'
 
 	testCompile 'org.testng:testng:6+'
 //	testCompile 'org.apache.jmeter:ApacheJMeter:2.+'
-- 
GitLab