blob: aab1b995cbbb578a80f992c93f479780bc9b0c62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
dependencies {
compile project(':juick-server-jdbc')
runtime "commons-fileupload:commons-fileupload:1.3.3"
providedRuntime 'com.h2database:h2:1.4.196'
testCompile("org.springframework.boot:spring-boot-starter-test")
}
|