forked from concordion/concordion-storyboard-extension-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (29 loc) · 818 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'
sourceCompatibility = 1.7
targetCompatibility = 1.7
wrapper {
gradleVersion = "4.8.1"
}
repositories {
mavenCentral()
}
dependencies {
testCompile 'org.concordion:concordion:2.2.0'
testCompile 'org.concordion:concordion-storyboard-extension:2.0.0'
testCompile 'org.slf4j:slf4j-api:1.7.25'
testCompile 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'org.seleniumhq.selenium:selenium-java:3.+'
}
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"
}
}