-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (50 loc) · 1.66 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
buildscript {
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
ext {
serenityVersion = '2.0.43'
serenityCucumberVersion = '1.0.5'
cucumberVersion = '4.2.0'
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:$rootProject.ext.serenityVersion")
}
}
plugins {
id 'java'
id 'idea'
id 'eclipse'
}
apply plugin: 'net.serenity-bdd.aggregator'
group 'com.cedaniel200'
version '1.0.0'
configurations.all {
resolutionStrategy {
force "io.cucumber:cucumber-core:$rootProject.ext.cucumberVersion"
}
}
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
testImplementation "net.serenity-bdd:serenity-core:$rootProject.ext.serenityVersion"
testImplementation "net.serenity-bdd:serenity-junit:$rootProject.ext.serenityVersion"
implementation "net.serenity-bdd:serenity-screenplay:$rootProject.ext.serenityVersion"
implementation "net.serenity-bdd:serenity-screenplay-webdriver:$rootProject.ext.serenityVersion"
testImplementation "net.serenity-bdd:serenity-cucumber4:$rootProject.ext.serenityCucumberVersion"
testImplementation "io.cucumber:cucumber-core:$rootProject.ext.cucumberVersion"
testImplementation "io.cucumber:cucumber-junit:$rootProject.ext.cucumberVersion"
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.9.1'
testImplementation 'org.slf4j:slf4j-simple:1.7.7'
}
tasks.withType(Test) {
systemProperties = System.properties as Map<String, ?>
maxParallelForks = Runtime.runtime.availableProcessors()
}
gradle.startParameter.continueOnFailure = true