forked from grooida/grooid-templates
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
33 lines (30 loc) · 860 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
buildscript {
repositories {
jcenter()
maven { url "http://dl.bintray.com/pledbrook/plugins" }
}
dependencies {
classpath "uk.co.cacoethes:lazybones-gradle:1.2.3"
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.0'
}
}
apply plugin: "uk.co.cacoethes.lazybones-templates"
apply plugin: 'org.asciidoctor.gradle.asciidoctor'
lazybones {
licenses = ["Apache-2.0"]
repositoryName = "rvanderwerf/grooid-templates"
repositoryUsername = project.property("bintrayUser")
repositoryApiKey = project.property("bintrayKey")
}
asciidoctor {
sourceDir = 'docs' as File
options = [
attributes: [
'icons': 'font',
'source-highlighter': 'prettify',
'toc': 'left',
'toclevels': 4,
'stylesheet':'css/style.css'
]
]
}