diff options
author | Alexander Alexeev | 2016-12-07 18:30:39 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-07 22:37:17 +0300 |
commit | 3f0229dd0c0d07286604c77980ca578c1b3b8cbc (patch) | |
tree | 323f8f2ca3abfee23e5f1666f787ba7dbac2a9ee | |
parent | 49f904b450ec693e3e968072480dab13be7abcf8 (diff) |
test dependencies
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | juick-core/build.gradle | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index c076bfd7..7522f95d 100644 --- a/build.gradle +++ b/build.gradle @@ -34,6 +34,7 @@ dependencies { testCompile project(':juick-core') testCompile project(':juick-www') testCompile project(':juick-xmpp') + testCompile "org.json:json:20160810" testCompile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}" testCompile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}" @@ -42,6 +43,7 @@ dependencies { testCompile "org.slf4j:slf4j-api:${slf4jVersion}" testCompile "junit:junit:${junitVersion}" testCompile "org.hamcrest:hamcrest-all:${hamcrestVersion}" + testRuntime "mysql:mysql-connector-java:5.1.40" } diff --git a/juick-core/build.gradle b/juick-core/build.gradle index 8a7e00b6..421025fe 100644 --- a/juick-core/build.gradle +++ b/juick-core/build.gradle @@ -8,6 +8,9 @@ dependencies { compile 'org.apache.commons:commons-lang3:3.5' compile 'org.apache.commons:commons-collections4:4.1' compile 'commons-io:commons-io:2.5' + + testCompile "junit:junit:${rootProject.junitVersion}" + testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}" } compileJava.options.encoding = 'UTF-8' |