aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: ec5774b68fb9b5afa82b7ebe37bf4f2f79f93734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'org.akhikhl.gretty:gretty:+'
    }
}
apply plugin: 'java'

repositories {
    mavenCentral()
    jcenter()
}
dependencies {
    testCompile project(':juick-core')
    testCompile 'com.fasterxml.jackson.core:jackson-databind:2.8.0'
    testCompile 'org.springframework:spring-jdbc:4.3.1.RELEASE'
    testCompile 'ch.vorburger.mariaDB4j:mariaDB4j:2.1.3'
    testCompile 'org.slf4j:slf4j-jdk14:1.7.13'
    testCompile 'junit:junit:4.12'
    testRuntime 'mysql:mysql-connector-java:5.1.39'
}

compileJava.options.encoding = 'UTF-8'