-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 838 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 838 Bytes
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
plugins {
id 'java'
}
group 'org.tadalabs.lambda.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
task buildDocker(type: Copy) {
from compileJava
from processResources
into('lib') {
from configurations.runtime
}
into 'build/docker'
}
dependencies {
compile 'com.google.guava:guava:28.0-jre'
compile group: 'com.amazonaws', name: 'aws-java-sdk-dynamodb', version: '1.11.608'
compile group: 'com.amazonaws', name: 'aws-lambda-java-core', version: '1.1.0'
compile group: 'org.json', name: 'json', version: '20180813'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.mockito:mockito-core:2.7.22'
testCompile group: 'net.bytebuddy', name: 'byte-buddy-dep', version: '1.10.1'
}
build.dependsOn buildDocker