aboutsummaryrefslogtreecommitdiff
path: root/juick-server-jdbc/build.gradle
blob: 3db97bfa6dceefd70a953dc1b6db679b211d00c9 (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
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'

sourceCompatibility = 1.8

dependencies {
    compile project(':juick-server-core')

    compile "org.apache.commons:commons-lang3:3.7"
    compile "org.apache.commons:commons-collections4:4.1"

    compile("org.springframework.boot:spring-boot-starter-jdbc")

    compile "org.apache.commons:commons-dbcp2:2.2.0"
    compile "com.googlecode.log4jdbc:log4jdbc:1.2"
    compile "javax.inject:javax.inject:1"

    compile 'org.imgscalr:imgscalr-lib:4.2'
    compile 'com.h2database:h2:1.4.196'
    runtime 'mysql:mysql-connector-java:5.1.40'

    runtime "commons-fileupload:commons-fileupload:1.3.3"
    testCompile("org.springframework.boot:spring-boot-starter-test")

    testRuntime "mysql:mysql-connector-java:5.1.40"
    testRuntime "org.postgresql:postgresql:42.2.2"
}