aboutsummaryrefslogtreecommitdiff
path: root/juick-server-web/build.gradle
blob: eeccbdbc6bdb00a340a7d94dd5992ccc5ac5ce82 (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
dependencies {
    compile project(':juick-server-core')

    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"
}