-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
42 lines (36 loc) · 955 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
buildscript {
ext {
nebulaReleaseVersion = "4.0.1"
awsLambdaCoreVersion = "1.1.0"
awsLambdaEventsVersion = "1.2.0"
awsLambdaLog4jVersion = "1.0.0"
rxJavaVersion = "1.1.5"
junitVersion = "4.12"
mockitoVersion = "1.10.19"
assertJVersion = "3.4.1"
jetbrainsAnnotationsVersion = "13.0"
awsPluginVersion = "0.28"
slf4jVersion = "1.7.21"
log4jVersion = "1.2.17"
jacksonVersion = "2.7.4"
httpClientVersion = "4.5.3"
jodaTimeVersion = "2.9.3"
unirestJavaVersion = "1.4.9"
libphonenumberVersion = "8.8.4"
jsonPathAssertVersion = "1.1.0"
}
repositories {
mavenCentral()
jcenter()
}
}
apply plugin: "java"
apply plugin: "idea"
group "com.github.frankfarrell"
repositories {
mavenCentral()
}
task wrapper(type: Wrapper) {
gradleVersion = "2.13"
}
evaluationDependsOnChildren();