Files
event-sourcing-examples/java-spring/customers-query-side-service/build.gradle

23 lines
643 B
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
apply plugin: VerifyEventStoreEnvironmentPlugin
apply plugin: EventuateDependencyPlugin
apply plugin: 'spring-boot'
dependencies {
compile project(":customers-query-side-web")
compile project(":common-swagger")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
testCompile project(":testutil")
testCompile project(":customers-command-side-service")
testCompile "org.springframework.boot:spring-boot-starter-test"
}
test {
ignoreFailures System.getenv("EVENTUATE_API_KEY_ID") == null
}