-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (28 loc) · 999 Bytes
/
build.gradle
File metadata and controls
36 lines (28 loc) · 999 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
27
28
29
30
31
32
33
34
35
36
group 'com.com.peng.com'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
sourceSets {
selenium
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'info.cukes', name: 'cucumber-java', version: '1.2.5'
testCompile group: 'info.cukes', name: 'cucumber-junit', version: '1.2.5'
testCompile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.13.0'
testCompile group: 'org.yaml', name: 'snakeyaml', version: '1.21'
testCompile group: 'commons-lang', name: 'commons-lang', version: '2.6'
testCompile group: 'com.vimalselvam', name: 'cucumber-extentsreport', version: '1.1.1'
testCompile group: 'ru.yandex.qatools.ashot', name: 'ashot', version: '1.5.4'
}
task runFirstTime(type: Test) {
ignoreFailures = true
exclude 'com/peng/runner/FeatureRerun*'
}
test {
include 'com/peng/runner/FeatureRerun*'
}
test.dependsOn ":runFirstTime"