Files
event-sourcing-examples/java-spring/common-web/build.gradle
Chris Richardson 2e31853ad2 Improved module name <functional-area>-<Command|Query>....
Standalone services now use the Event Store Server (many tests still use the embedded server)
2015-04-14 19:08:07 -07:00

12 lines
279 B
Groovy

apply plugin: 'java'
dependencies {
compile project(":testutil")
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
testCompile "junit:junit:4.11"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
}