aboutsummaryrefslogtreecommitdiff
path: root/juick-demo/build.gradle
blob: 2807266dcfa4a2414183955251c949f45e35e1e7 (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
buildscript {
    repositories {
        mavenCentral()
    }
}

apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.ben-manes.versions'

repositories {
    mavenCentral()
    jcenter()
}

mainClassName = "com.juick.demo.Demo"

def slf4jVersion = '1.7.21'

dependencies {
    compile project(':juick-core')
    compile 'org.apache.commons:commons-lang3:3.5'
    compile 'org.springframework:spring-jdbc:4.3.4.RELEASE'
    compile 'mysql:mysql-connector-java:5.1.39'
    compile 'ch.vorburger.mariaDB4j:mariaDB4j:2.2.2'
    compile 'jline:jline:2.14.2'
    compile 'org.slf4j:slf4j-api:${slf4jVersion}'
}
compileJava.options.encoding = 'UTF-8'