aboutsummaryrefslogtreecommitdiff
path: root/juick-server-web/build.gradle
blob: 390b8e5a3d789abf4faa69de562fc31aef565b37 (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
dependencies {
    compile project(':juick-server-core')
    compile "com.fasterxml.jackson.core:jackson-core:${rootProject.jacksonVersion}"
    compile "com.fasterxml.jackson.core:jackson-databind:${rootProject.jacksonVersion}"
    compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${rootProject.jacksonVersion}"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${rootProject.jacksonVersion}"

    compile 'com.github.ben-manes.caffeine:caffeine:2.6.2'
    compile("org.springframework.boot:spring-boot-starter-cache")
    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-websocket")
    compile("org.springframework.boot:spring-boot-starter-security")

    compile "javax.inject:javax.inject:1"

    compile 'org.imgscalr:imgscalr-lib:4.2'
    compile "org.apache.commons:commons-imaging:1.0-SNAPSHOT"

    runtime "commons-fileupload:commons-fileupload:1.3.3"

    compile ('com.github.juick:com.juick.xmpp:658f8cf751') {
        exclude group: 'xmlpull'
    }
    compile 'xpp3:xpp3:1.1.4c'

    testCompile "org.springframework.boot:spring-boot-starter-test"
    testCompile "org.springframework.security:spring-security-test"
}