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

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

mainClassName = "com.juick.console.Console"

dependencies {
    compile project(':juick-server')
    compile 'mysql:mysql-connector-java:5.1.40'
    compile 'org.jline:jline:3.1.2'
}

compileJava.options.encoding = 'UTF-8'

configurations {
    all*.exclude module: 'commons-logging'
}