forked from bisq-network/bisq-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (28 loc) · 882 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
plugins {
id 'org.asciidoctor.convert' version '2.3.0'
}
asciidoctor {
sourceDir = file('.')
resources {
from(sourceDir) {
include '**/*.png'
include '**/*.svg'
include '**/*.ico'
exclude 'build/**'
}
}
attributes 'source-highlighter': 'coderay',
toc : 'left',
sectanchors : '',
icons : 'font',
idprefix : '',
idseparator : '-',
docinfo : 'shared@',
'gh-org' : 'https://github.com/bisq-network',
'gh-team' : 'https://github.com/orgs/bisq-network/teams',
'role' : 'docs',
'stylesheet' : 'bisq.css',
'stylesdir' : './css@',
'docinfodir' : './@'
}
build.dependsOn asciidoctor