-
Notifications
You must be signed in to change notification settings - Fork 39
/
build.gradle
73 lines (61 loc) · 1.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
subprojects {
version = '1.0'
apply plugin : 'java'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = "UTF-8"
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.amazonaws', name: 'aws-lambda-java-core', version: '1.2.0'
compile group: 'com.amazonaws', name: 'aws-java-sdk-dynamodb', version: '1.11.367'
}
jar {
destinationDir = file("$rootDir/build")
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
jar
}
}
project(':iwe-avengers-create') {
dependencies {
compile project(':iwe-avengers-service')
}
}
project(':iwe-avengers-update') {
dependencies {
compile project(':iwe-avengers-service')
}
}
project(':iwe-avengers-search') {
dependencies {
compile project(':iwe-avengers-service')
}
}
project(':iwe-avengers-remove') {
dependencies {
compile project(':iwe-avengers-service')
}
}
project(':iwe-avengers-service') {
jar {
from('src/main/java') {
include 'com/iworks/justiceleague/repository/*.properties'
}
}
}
project(':iwe-avengers-integration-tests') {
dependencies {
testCompile 'com.intuit.karate:karate-junit4:0.8.0'
testCompile 'com.intuit.karate:karate-apache:0.8.0'
}
sourceSets {
test {
resources {
srcDir file('src/test/java')
exclude '**/*.java'
}
}
}
}