Increment the version and give all dependencies version ranges

This will help clients' dependency tools 'do the right thing'
This commit is contained in:
R. Tyler Croy 2015-08-21 18:03:34 -07:00
parent 53d6dfed39
commit 7f5fc8f92a
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 8 additions and 8 deletions

View File

@ -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'