aboutsummaryrefslogtreecommitdiff
path: root/juick-core/build.gradle
blob: ea50b3a4f71079112e56b4e62a4a2ddb74f932fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    compile project(':deps:com.juick.xmpp')
    def jacksonVersion = '2.8.1'
    compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
    compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
    compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}"
    compile 'org.apache.httpcomponents:httpclient:4.5.2'
    compile 'org.apache.commons:commons-lang3:3.4'
    compile "org.springframework:spring-jdbc:4.3.2.RELEASE"
    compile 'org.json:json:20151123'
}

compileJava.options.encoding = 'UTF-8'