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

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

repositories {
    mavenCentral()
    jcenter()
}

mainClassName = "com.juick.demo.Demo"

dependencies {
    compile project(':juick-core')
    compile 'org.apache.commons:commons-lang3:3.4'
    compile 'org.springframework:spring-jdbc:4.3.2.RELEASE'
    compile 'mysql:mysql-connector-java:5.1.39'
    compile 'ch.vorburger.mariaDB4j:mariaDB4j:2.1.3'
    compile 'jline:jline:2.14.2'
}
compileJava.options.encoding = 'UTF-8'