Added Gradle

This commit is contained in:
Marcin Grzejszczak
2018-06-07 11:15:51 +02:00
parent 2cc035fa26
commit b5016e61cb
21 changed files with 649 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
apply plugin: 'groovy'
dependencies {
compile(project(":demand-forecasting-model"))
compile(project(":adapter-commons"))
compile("org.projectlombok:lombok:1.16.18")
runtime("org.postgresql:postgresql:42.1.4")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("org.spockframework:spock-core:1.1-groovy-2.4")
testCompile("org.spockframework:spock-spring:1.1-groovy-2.4")
testCompile("com.h2database:h2:1.4.194")
testCompile(project(":adapter-commons").sourceSets.test.output)
}