blob: 5fe76a2cfbc495940ce4b547dc9ba62b607f36ba (
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
30
31
32
33
34
|
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.40'
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'
configurations {
all*.exclude module: 'commons-logging'
}
|