Browse Source

Gradle build cleanup.

pull/57/head
Kalle Stenflo 10 years ago
parent
commit
0635cfaa97
  1. 2
      build.gradle
  2. 4
      gradle/wrapper/gradle-wrapper.properties
  3. 7
      json-path-assert/build.gradle
  4. 4
      json-path-web-test/build.gradle
  5. 9
      json-path/build.gradle

2
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
}

4
gradle/wrapper/gradle-wrapper.properties vendored

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

7
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
}

4
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 {

9
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
*/
}

Loading…
Cancel
Save