-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
36 lines (28 loc) · 985 Bytes
/
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
apply plugin: 'java'
description = 'Demonstration of the concordion logging tooltip extension'
wrapper {
gradleVersion = "4.8.1"
}
repositories {
mavenCentral()
}
ext {
concordionVersion = "4.0.0"
concordionLoggingVersion = "[1.1.2,)"
seleniumVersion = "3+"
wdmVersion = "4.+"
slf4jVersion = "1.6.1"
}
dependencies {
testImplementation "org.concordion:concordion:$concordionVersion",
"org.concordion:concordion-logging-tooltip-extension:$concordionLoggingVersion",
"org.seleniumhq.selenium:selenium-java:$seleniumVersion",
"io.github.bonigarcia:webdrivermanager:$wdmVersion"
"org.slf4j:slf4j-api:$slf4jVersion"
runtimeOnly "org.slf4j:slf4j-jdk14:$slf4jVersion"
}
test {
include '**/LoggingTooltipDemo.*'
systemProperties['concordion.output.dir'] = "$reporting.baseDir/spec"
outputs.upToDateWhen { false } // force it to run even if test code hasn't changed
}