diff --git a/build.gradle b/build.gradle index b089be04..5bffbd33 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,6 @@ buildscript { dependencies { classpath 'me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1' classpath 'com.github.jengelman.gradle.plugins:shadow:0.8' - classpath 'org.hidetake:gradle-ssh-plugin:0.3.12' } } @@ -19,7 +18,6 @@ ext { hamcrestLibrary: 'org.hamcrest:hamcrest-library:1.3', test: ['org.slf4j:slf4j-simple:1.7.7', 'org.assertj:assertj-core:1.6.1', 'commons-io:commons-io:2.4', 'org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', 'junit:junit:4.10'] - ] snapshotVersion = true } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c8ece9a4..cbc178c6 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Thu Oct 02 21:38:47 CEST 2014 +#Fri Oct 03 12:04:58 CEST 2014 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-all.zip diff --git a/json-path-assert/build.gradle b/json-path-assert/build.gradle index 36f08900..0a47bd0c 100644 --- a/json-path-assert/build.gradle +++ b/json-path-assert/build.gradle @@ -1,6 +1,6 @@ apply from: "$rootDir/gradle/publishMaven.gradle" -displayName = "Json Path Assert" +displayName = "JsonPath Assert" description = "Assertions on Json using JsonPath" @@ -18,9 +18,4 @@ dependencies { compile libs.slf4jApi testCompile libs.test - - //testCompile libs.assertjCore - //testCompile libs.commonsIo - //testCompile libs.junit - } diff --git a/json-path-web-test/build.gradle b/json-path-web-test/build.gradle index b7719845..d97df837 100644 --- a/json-path-web-test/build.gradle +++ b/json-path-web-test/build.gradle @@ -1,6 +1,10 @@ apply plugin: 'shadow' apply plugin: 'application' +displayName = "JsonPath Tets Bench" + +description = "Web app that compares different JsonPath implementations." + mainClassName = 'com.jayway.jsonpath.web.boot.Main' jar { diff --git a/json-path/build.gradle b/json-path/build.gradle index c50b2cf6..6c45d79a 100644 --- a/json-path/build.gradle +++ b/json-path/build.gradle @@ -18,14 +18,5 @@ dependencies { compile libs.slf4jApi testCompile libs.test - /* - testCompile libs.slf4jSimple - testCompile libs.assertjCore - testCompile libs.commonsIo - testCompile libs.hamcrestCore - testCompile libs.hamcrestLibrary - testCompile libs.junit - */ - }