blob: 8dfb596b2ee41cab2db8889721186475e8877a34 (
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'
repositories {
mavenCentral()
}
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'
}
compileJava.options.encoding = 'UTF-8'
|