blob: c6dfff42f153bfd635da8bfa1f8a8316fac54582 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile project(':juick-server-core')
compile "org.springframework:spring-context-support:${rootProject.springFrameworkVersion}"
compile "org.projectlombok:lombok:1.16.14"
compile "org.slf4j:slf4j-api:1.7.24"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
|