-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (36 loc) · 1.27 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
repositories {
jcenter()
mavenLocal()
}
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:2.3.2")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'net.serenity-bdd.aggregator'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
testImplementation ('net.serenity-bdd:serenity-core:2.3.2') {
exclude group: "io.cucumber", module: "cucumber-core"
}
testImplementation('net.serenity-bdd:serenity-cucumber6:2.3.2')
testImplementation('net.serenity-bdd:serenity-screenplay:2.3.2')
testImplementation('net.serenity-bdd:serenity-screenplay-webdriver:2.3.2')
testImplementation('net.serenity-bdd:serenity-screenplay-rest:2.3.2')
testImplementation('net.serenity-bdd:serenity-ensure:2.3.2')
testImplementation('net.serenity-bdd:serenity-assertions:2.3.2')
testImplementation('org.assertj:assertj-core:3.8.0')
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.5.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.5.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.5.2")
}
gradle.startParameter.continueOnFailure = true
test.finalizedBy(aggregate)