-
Notifications
You must be signed in to change notification settings - Fork 43
/
build.gradle
44 lines (35 loc) · 1.08 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
plugins {
id "net.serenity-bdd.serenity-gradle-plugin" version "2.5.10"
id 'java'
id 'eclipse'
id 'idea'
}
defaultTasks 'clean','test','aggregate'
repositories {
mavenLocal()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
slf4jVersion = '1.7.7'
serenityCoreVersion = '2.5.8'
junitVersion = '4.13.1'
assertJVersion = '3.8.0'
logbackVersion = '1.2.3'
lombokVersion = '1.18.20'
}
dependencies {
testImplementation "net.serenity-bdd:serenity-core:${serenityCoreVersion}",
"net.serenity-bdd:serenity-junit:${serenityCoreVersion}",
"net.serenity-bdd:serenity-screenplay:${serenityCoreVersion}",
"junit:junit:${junitVersion}",
"org.assertj:assertj-core:${assertJVersion}",
"org.projectlombok:lombok:${lombokVersion}",
"ch.qos.logback:logback-classic:${logbackVersion}"
}
test {
testLogging.showStandardStreams = true
systemProperties System.getProperties()
}
gradle.startParameter.continueOnFailure = true
test.finalizedBy(aggregate)