From 41cdf435b076d93c2837983d17a5b2d29caa2f28 Mon Sep 17 00:00:00 2001 From: Kalle Stenflo Date: Sun, 22 Nov 2015 16:21:23 +0100 Subject: [PATCH] Released JsonPath 2.1.0 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index bc8d7f987..504f45b86 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ ext { test: ['org.slf4j:slf4j-simple:1.7.12', 'org.assertj:assertj-core:2.1.0', 'commons-io:commons-io:2.4','org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', 'junit:junit:4.12'] ] - snapshotVersion = true + snapshotVersion = false } allprojects { @@ -29,7 +29,7 @@ allprojects { ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss') group = 'com.jayway.jsonpath' - version = '2.0.1' + (snapshotVersion ? "-SNAPSHOT" : "") + version = '2.1.0' + (snapshotVersion ? "-SNAPSHOT" : "") if (JavaVersion.current().isJava8Compatible()) { tasks.withType(Javadoc) {