blob: 3ac52b522416b788dec7f14c1e0ea4c2d09fbb93 (
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"
dependencies {
compile project(':juick-core')
compile 'mysql:mysql-connector-java:5.1.40'
compile 'ch.vorburger.mariaDB4j:mariaDB4j:2.2.2'
compile 'jline:jline:2.14.2'
}
compileJava.options.encoding = 'UTF-8'
configurations {
all*.exclude module: 'commons-logging'
}
|