forked from microservices-patterns/ftgo-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (26 loc) · 1.19 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
dependencies {
compile "com.amazonaws:aws-lambda-java-core:1.1.0"
compile "com.amazonaws:aws-lambda-java-events:2.0.1"
compile ("io.eventuate.tram.core:eventuate-tram-producer-jdbc-spring:$eventuateTramVersion") {
exclude module: "org.springframework"
}
compile "io.eventuate.tram.core:eventuate-tram-events-spring:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-messaging-spring:$eventuateTramVersion"
compile project(":ftgo-restaurant-service-api")
compile project(":ftgo-common-jpa")
compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
compile 'javax.el:javax.el-api:2.2.5'
testCompile "io.eventuate.util:eventuate-util-test:$eventuateUtilVersion"
testCompile "io.eventuate.tram.core:eventuate-tram-test-util:$eventuateTramVersion"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile 'com.jayway.restassured:rest-assured:2.3.0'
testCompile "com.jayway.jsonpath:json-path:2.3.0"
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from configurations.runtime
}
}
build.dependsOn buildZip