forked from docToolchain/docToolchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.groovy
29 lines (25 loc) · 1.22 KB
/
Config.groovy
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
// To use environment variables, you can use:
// outputPath = "${System.getenv('HOME')}/docs"
//
// To specify paths relative to current directory, use PWD variable:
// outputPath = "${System.getenv('PWD')}/docs"
outputPath = 'build/docs'
inputPath = 'src/docs'
inputFiles = [[file: 'arc42-template-de.adoc', formats: ['html','pdf','docbook']],
[file: 'arc42-template-en.adoc', formats: ['html','pdf','docbook']],
[file: 'arc42-template-es.adoc', formats: ['html','pdf','docbook']],
[file: 'test.adoc', formats: ['html','pdf','docbook']],
[file: 'manual.adoc', formats: ['html']],
[file: 'ppt/Demo.pptx.ad', formats: ['html','revealjs']],
]
taskInputsDirs = ["${inputPath}/arc42",
"${inputPath}/images",
]
taskInputsFiles = ["${inputPath}/arc42-template-de.adoc",
"${inputPath}/config-de.adoc",
"${inputPath}/arc42-template-en.adoc",
"${inputPath}/config-en.adoc",
"${inputPath}/arc42-template-es.adoc",
"${inputPath}/config-es.adoc",
"${outputPath}/changelog.adoc",
]