forked from adamyanova/java_s3tests
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
68 lines (53 loc) · 1.85 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
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.549'
}
}
dependencies {
compile 'com.amazonaws:aws-java-sdk-core:1.11.549'
compile 'com.amazonaws:aws-java-sdk:1.11.549'
compile 'com.amazonaws:aws-java-sdk-s3:1.11.549'
compile 'com.amazonaws:aws-java-sdk-sqs'
compile 'org.seleniumhq.selenium:selenium-server:2.44.0'
compile 'org.testng:testng:6.1.1'
compile group: 'log4j', name:'log4j', version:'1.2.17'
}
test {
useTestNG() {
suites 'testng.xml'
}
testLogging {
events "PASSED", "STARTED", "FAILED", "SKIPPED"
showStandardStreams = true
events "started", "passed", "skipped", "failed", "standardOut", "standardError"
debug {
events "started", "passed", "skipped", "failed", "standardOut", "standardError"
exceptionFormat "full"
}
info.events = debug.events
info.exceptionFormat = debug.exceptionFormat
afterSuite { desc, result ->
if (!desc.parent) {
def output = "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)"
def startItem = '| ', endItem = ' |'
def repeatLength = startItem.length() + output.length() + endItem.length()
println('\n' + ('-' * repeatLength) + '\n' + startItem + output + endItem + '\n' + ('-' * repeatLength))
}
}
}
}