Files
actions/production-planning-adapters/build.gradle
Marcin Grzejszczak b5016e61cb Added Gradle
2018-06-07 11:15:51 +02:00

16 lines
511 B
Groovy

apply plugin: 'groovy'
dependencies {
compile(project(":adapter-commons"))
compile("org.projectlombok:lombok:1.16.18")
compile("net.bytebuddy:byte-buddy:1.7.9")
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)
}