-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
50 lines (41 loc) · 1.29 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
buildscript {
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
ext{
serenityVersion = '2.1.2'
serenityCucumberVersion = '1.9.45'
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:$rootProject.ext.serenityVersion")
}
}
plugins {
id 'java'
id 'idea'
}
apply plugin: 'net.serenity-bdd.aggregator'
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
testImplementation "net.serenity-bdd:serenity-core:$rootProject.ext.serenityVersion"
testImplementation "net.serenity-bdd:serenity-junit:$rootProject.ext.serenityVersion"
compile "net.serenity-bdd:serenity-screenplay:$rootProject.ext.serenityVersion"
compile "net.serenity-bdd:serenity-screenplay-webdriver:$rootProject.ext.serenityVersion"
compile "net.serenity-bdd:serenity-cucumber:$rootProject.ext.serenityCucumberVersion"
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