aboutsummaryrefslogtreecommitdiff
path: root/juick-api/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-11-25 11:00:59 +0300
committerGravatar Vitaly Takmazov2016-11-25 11:00:59 +0300
commitefe9b6d78c9aac2b92afe2d55d2f33e4b5e6d179 (patch)
tree4943c462a9770c6c46ebef8e569acc9232f432f8 /juick-api/build.gradle
parent373ec3d238fc43fe38788fd1ba1091299f224530 (diff)
juick-api: some json tests
Diffstat (limited to 'juick-api/build.gradle')
-rw-r--r--juick-api/build.gradle6
1 files changed, 2 insertions, 4 deletions
diff --git a/juick-api/build.gradle b/juick-api/build.gradle
index d086e70a..c90b22d2 100644
--- a/juick-api/build.gradle
+++ b/juick-api/build.gradle
@@ -2,16 +2,12 @@ buildscript {
repositories {
mavenCentral()
}
- dependencies {
- classpath 'com.tkruse.gradle:gradle-groovysh-plugin:1.0.8'
- }
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'
-apply plugin: 'com.github.tkruse.groovysh'
def springFrameworkVersion = "4.3.4.RELEASE"
def springSecurityVersion = "4.2.0.RELEASE"
@@ -32,8 +28,10 @@ dependencies {
providedRuntime 'mysql:mysql-connector-java:5.1.40'
testCompile "junit:junit:4.12"
+ testCompile "org.hamcrest:hamcrest-all:1.3"
testCompile "org.mockito:mockito-core:1.+"
testCompile "org.springframework:spring-test:${springFrameworkVersion}"
+ testRuntime 'com.jayway.jsonpath:json-path:2.2.0'
}
compileJava.options.encoding = 'UTF-8'