aboutsummaryrefslogtreecommitdiff
path: root/juick-common/build.gradle
blob: 967926ba052692f4ad2c628c6f91b4042da91594 (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'

dependencies {
    compile("org.springframework.boot:spring-boot-starter-json")
    compile "org.apache.commons:commons-lang3:3.8.1"
    compile "org.apache.commons:commons-collections4:4.2"
    compile 'org.apache.commons:commons-text:1.4'
    compile "commons-codec:commons-codec:1.11"
    compile "commons-io:commons-io:2.6"
    compile 'com.google.code.findbugs:jsr305:3.0.2'
    compile 'org.ocpsoft.prettytime:prettytime:4.0.2.Final'
    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 "javax.inject:javax.inject:1"
    compile "javax.xml.bind:jaxb-api:2.3.1"
    compile 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
    testCompile("org.springframework.boot:spring-boot-starter-test")
}