aboutsummaryrefslogtreecommitdiff
path: root/juick-core/build.gradle
blob: 6bdd326c3f2654e15e66ef873ce1752c2b126fe9 (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
apply plugin: 'java'
apply plugin: 'com.github.ben-manes.versions'

repositories {
    mavenCentral()
}

def slf4jVersion = '1.7.21'
def jacksonVersion = '2.8.4'

dependencies {
    compile project(':deps:com.juick.xmpp')

    compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"

    compile "org.slf4j:slf4j-api:${slf4jVersion}"
    compile 'org.apache.httpcomponents:httpclient:4.5.2'
    compile 'org.apache.commons:commons-lang3:3.5'
    compile 'org.apache.commons:commons-collections4:4.1'
    compile 'commons-io:commons-io:2.5'
    compile 'org.json:json:20160810'
}

compileJava.options.encoding = 'UTF-8'

configurations {
    all*.exclude module: 'commons-logging'
}