forked from arc42/arc42-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildconfig.groovy
More file actions
32 lines (27 loc) · 831 Bytes
/
buildconfig.groovy
File metadata and controls
32 lines (27 loc) · 831 Bytes
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
goldenMaster {
sourcePath = 'src/'
targetPath = 'build/src_gen/'
// a list of all features contained in the golden master
allFeatures = ['help', 'example']
// style: list of features
templateStyles = [
'plain' : [],
'with-help': ['help'],
// deaktivated for the moment - no content yet
// 'with-examples':['help','example'],
]
}
formats = [
'asciidoc': [imageFolder: true],
'html': [imageFolder: true],
'epub': [imageFolder: false],
'markdown': [imageFolder: true],
'markdownMP': [imageFolder: true],
'textile': [imageFolder: true],
'docx': [imageFolder: false],
'docbook': [imageFolder: true]
]
distribution {
targetPath = "build/dist/"
//formats = ['asciidoc','html','epub','markdown','docx','docbook']
}