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

repositories {
    mavenCentral()
}

dependencies {
    compile project(':deps:com.juick.xmpp')
    compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.0'
    compile 'org.apache.httpcomponents:httpclient:4.5.1'
    compile 'org.apache.commons:commons-lang3:3.4'
    compile "org.springframework:spring-jdbc:4.3.1.RELEASE"
    compile 'org.json:json:20151123'
}

compileJava.options.encoding = 'UTF-8'