forked from concordion/concordion-executeonlyif-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (33 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
38
apply from: 'https://raw.githubusercontent.com/concordion/concordion-extension-build/master/extension-build.gradle'
description = 'An extension to Concordion that adds a `executeOnlyIf` command that conditionally executes child commands'
ext {
developers = {
developer {
id 'andrew-sumner'
name 'Andrew Sumner'
roles { role 'Project owner' }
}
}
inceptionYear = '2014'
}
githubPages {
repoUri = '[email protected]:concordion/concordion-executeonlyif-extension.git'
pages {
from ('build/docs/javadoc/') {
into 'api'
}
}
}
sourceSets {
test {
resources { srcDirs += 'src/test/java' }
}
}
test.dependsOn cleanTest
test {
systemProperties['concordion.output.dir'] = "$reporting.baseDir/spec"
outputs.upToDateWhen { false } // force it to run even if test code hasn't changed
testLogging {
events "passed", "skipped", "failed", "standardError"
}
}