forked from microservices-patterns/ftgo-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
20 lines (14 loc) · 904 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dependencies {
// TODO eliminate this - problem is value objects like Money need to be embeddable.
// TODO https://en.wikibooks.org/wiki/Java_Persistence/Embeddables#Example_of_an_Embeddable_object_XML
// compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter:$springBootVersion"
// compile "org.springframework.boot:spring-boot-starter:$springBootVersion"
compile "io.eventuate.common:eventuate-common-json-mapper:$eventuateCommonVersion"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.7"
runtime "javax.xml.bind:jaxb-api:2.2.11"
runtime "com.sun.xml.bind:jaxb-core:2.2.11"
runtime "com.sun.xml.bind:jaxb-impl:2.2.11"
runtime "javax.activation:activation:1.1.1"
}