Files
event-sourcing-examples/java-spring/monolithic-service/build.gradle
dartpopikyardo c9fa916cdd fixed issue #22
fixed issue #35
2016-09-05 12:05:48 +03:00

30 lines
1.0 KiB
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
apply plugin: 'spring-boot'
dependencies {
compile project(":accounts-query-side-web")
compile project(":accounts-command-side-web")
compile project(":transactions-command-side-web")
compile project(":customers-command-side-web")
compile project(":customers-query-side-web")
compile project(":common-auth-web")
compile project(":common-swagger")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "io.eventuate.client.java:eventuate-client-java-http-stomp-spring:$eventuateClientVersion"
testCompile project(":testutil")
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "io.eventuate.client.java:eventuate-client-java-jdbc:$eventuateClientVersion"
}
task copyWebStatic(type: Copy) {
from "../../js-frontend/build"
into "build/resources/main/static"
}
jar.dependsOn(copyWebStatic)
bootRun.dependsOn(copyWebStatic)