19 lines
485 B
Groovy
19 lines
485 B
Groovy
apply plugin: 'spring-boot'
|
|
|
|
dependencies {
|
|
compile project(":queryside-web")
|
|
compile project(":commandside-web-accounts")
|
|
compile project(":commandside-web-transactions")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-web"
|
|
compile "org.springframework.boot:spring-boot-starter-actuator"
|
|
|
|
compile "net.chrisrichardson.eventstore.client:eventstore-jdbc:$eventStoreClientVersion"
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
}
|
|
|
|
|
|
|