-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (50 loc) · 1.48 KB
/
build.gradle
File metadata and controls
58 lines (50 loc) · 1.48 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
plugins {
id 'distribution'
}
apply from: 'https://raw.githubusercontent.com/concordion/concordion-extension-build/master/extension-build.gradle'
description = 'An extension to Concordion to use Excel spreadsheets rather than HTML as specifications'
ext {
poiVersion = '5.2.3'
developers = {
developer {
id 'robmoffat'
name 'Rob Moffat'
roles { role 'Extension Contributor' }
url 'http://kite9.com'
}
developer {
id 'tiagotcsilva'
name 'Tiago da Costa Silva'
roles { role 'Extension Contributor' }
url 'http://kite9.com'
}
}
inceptionYear = '2014'
}
dependencies {
implementation "org.apache.poi:poi:$poiVersion"
implementation "org.apache.poi:poi-ooxml:$poiVersion"
implementation "org.apache.poi:poi-ooxml-lite:$poiVersion"
implementation 'org.apache.commons:commons-lang3:3.3.2'
testImplementation 'org.xmlunit:xmlunit-core:2.1.0'
testImplementation "org.junit.vintage:junit-vintage-engine:5.9.3"
}
test {
exclude '**/Abstract*'
}
gitPublish {
repoUri = 'git@github.com:concordion/concordion-excel-extension.git'
branch = 'gh-pages'
contents {
from 'docs'
from ('build/reports/spec/spec/concordion/ext/excel') {
into 'spec'
}
from ('build/reports/spec/org/concordion/ext/excel') {
into 'tests'
}
from ('build/docs/javadoc/') {
into 'api'
}
}
}