forked from microservices-patterns/ftgo-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (27 loc) · 1.86 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
apply plugin: FtgoServicePlugin
dependencies {
compile project(":ftgo-accounting-service-api")
compile project(":common-swagger")
compile "io.eventuate.tram.sagas:eventuate-tram-sagas-event-sourcing-support:$eventuateTramSagasVersion"
compile "io.eventuate.tram.core:eventuate-tram-spring-jdbc-kafka:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-spring-events:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-spring-messaging:$eventuateTramVersion"
compile "io.eventuate.tram.sagas:eventuate-tram-sagas-spring-orchestration-simple-dsl:$eventuateTramSagasVersion"
compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
compile 'javax.el:javax.el-api:2.2.5'
compile "io.eventuate.local.java:eventuate-client-java-spring:$eventuateLocalVersion"
compile "io.eventuate.local.java:eventuate-client-java-spring-jdbc:$eventuateLocalVersion"
compile "io.eventuate.local.java:eventuate-local-java-spring-jdbc:${eventuateLocalVersion}"
compile('org.apache.kafka:kafka-clients:2.3.0') {
force = true
}
testCompile "io.eventuate.tram.core:eventuate-tram-spring-in-memory:$eventuateTramVersion"
testCompile "io.eventuate.util:eventuate-util-test:$eventuateUtilVersion"
testCompile "io.eventuate.tram.core:eventuate-tram-test-util:$eventuateTramVersion"
testCompile "io.eventuate.tram.sagas:eventuate-tram-sagas-spring-in-memory:$eventuateTramSagasVersion"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile "com.jayway.restassured:rest-assured:$restAssuredVersion"
testCompile "com.jayway.jsonpath:json-path:2.3.0"
}