-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
37 lines (30 loc) · 919 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
37
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
wrapper {
gradleVersion = "4.10.2"
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.concordion:concordion:3.0.1'
testImplementation 'org.concordion:concordion-storyboard-extension:2.0.0'
testImplementation 'org.slf4j:slf4j-api:1.7.25'
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'org.seleniumhq.selenium:selenium-java:3.+'
testImplementation 'io.github.bonigarcia:webdrivermanager:4.+'
}
sourceSets {
test {
resources { srcDirs += 'src/test/java' }
}
}
test {
systemProperties['concordion.output.dir'] = "$reporting.baseDir/spec"
outputs.upToDateWhen { false } // force it to run even if test code hasn't changed
testLogging.showStandardStreams = true
testLogging {
events "passed", "skipped", "failed", "standardError"
}
}