From 7f5fc8f92a017e5f0cb82bb8602ac9aec7c1c320 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 21 Aug 2015 18:03:34 -0700 Subject: [PATCH] Increment the version and give all dependencies version ranges This will help clients' dependency tools 'do the right thing' --- build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index affaed6..eac4af0 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ apply plugin: 'groovy' apply plugin: 'maven' apply plugin: 'com.jfrog.bintray' -version = '0.1.6' +version = '0.2.0' group = 'com.github.jrubygradle' description = 'A library for managing Ruby gems' defaultTasks 'check', 'assemble' @@ -23,18 +23,18 @@ repositories { } dependencies { - compile 'org.slf4j:slf4j-api:1.7.12' + compile 'org.slf4j:slf4j-api:[1.7.12,1.8)' /* using the simple logger at runtime, no need for it at compile time though */ - runtime 'org.slf4j:slf4j-simple:1.7.12' + runtime 'org.slf4j:slf4j-simple:[1.7.12,1.8)' /* Used for processing yaml files inside of gems */ - compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.5.4' - compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.4' - compile 'com.fasterxml.jackson.core:jackson-databind:2.5.4' + compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:[2.5.4,2.6)' + compile 'com.fasterxml.jackson.core:jackson-annotations:[2.5.4,2.6)' + compile 'com.fasterxml.jackson.core:jackson-databind:[2.5.4,2.6)' /* shrinkwrap is used for digging into archives */ - compile "org.jboss.shrinkwrap:shrinkwrap-bom:1.2.2" - compile "org.jboss.shrinkwrap:shrinkwrap-depchain:1.2.2" + compile "org.jboss.shrinkwrap:shrinkwrap-bom:[1.2.2,1.3)" + compile "org.jboss.shrinkwrap:shrinkwrap-depchain:[1.2.2,1.3)" /* Used for FileUtils and deleting integration test dirs */ testCompile 'org.apache.commons:commons-io:1.3.2'