-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 818 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 818 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
apply plugin: 'java'
apply plugin: 'application'
group 'com.epam'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.amazonaws:aws-java-sdk:1.11.382'
compile group: 'org.json', name: 'json', version: '20180130'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.4.0'
testCompile 'org.awaitility:awaitility:3.1.2'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.2.0')
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.2.0'
}
test {
useJUnitPlatform()
}