-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (41 loc) · 1.02 KB
/
build.gradle
File metadata and controls
50 lines (41 loc) · 1.02 KB
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
group 'com.tmaher.appium'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
buildscript {
ext {
appiumVersion = '2.1.0'
slf4jVersion = '6.11'
testNGVersion = '4.12'
assertjVersion = '1.7.0'
hamcrestVersion = '2.0.0.0'
}
repositories {
mavenCentral()
jcenter()
}
}
dependencies {
compile "io.appium:java-client:${appiumVersion}"
compile "org.slf4j:slf4j-simple:${slf4jVersion}"
testCompile "org.assertj:assertj-core:${assertjVersion}"
testCompile "org.hamcrest:java-hamcrest:${hamcrestVersion}"
compile group: 'org.testng', name: 'testng', version: '6.11'
}
test {
testLogging {
showStandardStreams = true
}
systemProperties(System.getProperties())
maxParallelForks = 8
ignoreFailures true
}
// continue build to generate reports
gradle.startParameter.continueOnFailure = true