diff options
author | Vitaly Takmazov | 2016-06-27 16:39:15 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-06-27 16:39:15 +0300 |
commit | 462013333ed9ab6244e8b46106e3cb566efdd0e0 (patch) | |
tree | d9568142af36eacb59d59bfc7e0cfac26a7628c6 /build.gradle | |
parent | 1f631483bbed66a5afee88eb8341880a40075a7c (diff) |
embedded mariadb for tests
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 0d69481d..9ab3bce3 100644 --- a/build.gradle +++ b/build.gradle @@ -22,6 +22,7 @@ apply plugin: 'com.github.tkruse.groovysh' repositories { mavenCentral() + jcenter() } def core = project(':deps:com.juick') @@ -56,8 +57,9 @@ dependencies { compile 'com.github.pengrad:java-telegram-bot-api:2.1.1' compile 'com.neovisionaries:nv-websocket-client:1.27' runtime 'mysql:mysql-connector-java:5.1.39' + testCompile 'ch.vorburger.mariaDB4j:mariaDB4j:2.1.3' + testCompile 'org.slf4j:slf4j-jdk14:1.7.13' testCompile 'junit:junit:4.12' - testRuntime 'com.h2database:h2:1.4.190' } compileJava.options.encoding = 'UTF-8' gretty { |