aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: a32de4f1c74c5a7b828a09a38150789e89f5417e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
allprojects {
    repositories {
        mavenCentral()
        maven { url "https://jitpack.io" }
    }
}

project.ext {
    springFrameworkVersion = '4.3.4.RELEASE'
    springSecurityVersion = '4.2.0.RELEASE'
    jacksonVersion = '2.8.5'
    slf4jVersion = '1.7.21'
    logbackVersion = '1.1.7'
}

buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'org.akhikhl.gretty:gretty:+'
        classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
    }
}
apply plugin: 'java'

repositories {
    jcenter()
}
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}"
    testCompile "org.springframework:spring-jdbc:${springFrameworkVersion}"
    testCompile 'ch.vorburger.mariaDB4j:mariaDB4j:2.2.2'
    testCompile "org.slf4j:slf4j-api:${slf4jVersion}"
    testCompile 'junit:junit:4.12'
    testRuntime 'mysql:mysql-connector-java:5.1.40'
}

compileJava.options.encoding = 'UTF-8'