-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
45 lines (36 loc) · 822 Bytes
/
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
buildscript {
repositories {
jcenter()
}
dependencies {
//Gradle shadow plugin
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}
group = 'com.joeyvmason.serverless.spring'
version = '1.0'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
targetCompatibility = 1.8
apply from: "$rootDir/libs.gradle"
repositories {
jcenter()
}
dependencies {
compile libs.awsServerlessJavaContainer.spring
compile libs.guava
compile libs.jackson
compile libs.logging.slf4j
compile libs.logging.lambdaLog4j
testCompile libs.test.testng
testCompile libs.test.festAssert
testCompile libs.test.spring
testCompile libs.test.lang3
}
test {
useTestNG()
}