-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
148 lines (113 loc) · 4.4 KB
/
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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import org.asciidoctor.gradle.jvm.AsciidoctorTask
import org.asciidoctor.gradle.jvm.pdf.AsciidoctorPdfTask
import java.text.SimpleDateFormat
plugins {
id 'application'
id 'org.asciidoctor.jvm.convert' version '4.0.3'
id 'org.asciidoctor.jvm.pdf' version '4.0.3'
}
repositories {
mavenCentral()
}
ext {
workDirectory = rootProject.projectDir
def releaseVersion = System.getenv("RELEASE_VERSION")
def localVersion = "LocalBuild"
def curriculumFileName = rootProject.curriculumFileName
project.version = releaseVersion == null ? localVersion : releaseVersion
versionDate = new SimpleDateFormat("yyyyMMdd").format(new Date())
}
def buildPDF = rootProject.ext.languages.collect { 'pdf' + it }
def buildHTML = rootProject.ext.languages.collect { 'html' + it }
pdfThemes {
local 'isaqb', {
themeDir = '../pdf-theme/themes'
themeName = 'isaqb'
}
}
application {
applicationDefaultJvmArgs = [
"""--add-opens""", """java.base/sun.nio.ch=ALL-UNNAMED""",
"""--add-opens""", """java.base/java.io=ALL-UNNAMED""",
]
}
languages.forEach { lang ->
tasks.register("pdf${lang}", AsciidoctorPdfTask) {
mustRunAfter includeLearningObjectives
jvm {
jvmArgs("--add-opens", "java.base/sun.nio.ch=ALL-UNNAMED", "--add-opens", "java.base/java.io=ALL-UNNAMED")
}
sourceDir = new File("${workDirectory}/docs/")
baseDir = new File("${workDirectory}/docs/")
sources {
include "${curriculumFileName}.adoc"
}
outputDir "${workDirectory}/build/"
theme "isaqb"
fontsDirs '../pdf-theme/fonts'
def fileVersion = project.version.trim() + "-" + lang
attributes = [
'icons' : 'font',
'version-label' : '',
'revnumber' : fileVersion,
'revdate' : versionDate,
'document-version' : fileVersion + "-" + versionDate,
'currentDate' : versionDate,
'release-version' : project.version,
'language' : lang,
'curriculumFileName': curriculumFileName,
'data-uri' : true,
'allow-uri-read' : true,
]
doLast {
File source = new File("${workDirectory}/build/${curriculumFileName}.pdf")
File target = new File("${workDirectory}/build/${curriculumFileName}-${lang.toLowerCase()}.pdf")
source.renameTo(target)
}
}
tasks.register("html${lang}", AsciidoctorTask) {
mustRunAfter includeLearningObjectives
jvm {
jvmArgs("--add-opens", "java.base/sun.nio.ch=ALL-UNNAMED", "--add-opens", "java.base/java.io=ALL-UNNAMED")
}
sourceDir = new File("${workDirectory}/docs/")
baseDir = new File("${workDirectory}/docs/")
sources {
include "index.adoc"
include "${curriculumFileName}.adoc"
}
outputDir "${workDirectory}/build/"
def fileVersion = project.version.trim() + "-" + lang
attributes = [
'icons' : 'font',
'version-label' : '',
'revnumber' : fileVersion,
'revdate' : versionDate,
'document-version' : fileVersion + "-" + versionDate,
'currentDate' : versionDate,
'release-version' : project.version,
'language' : lang,
'curriculumFileName': curriculumFileName,
'data-uri' : true,
'allow-uri-read' : true,
'stylesheet' : '../html-theme/adoc-github.css',
'stylesheet-dir' : '../html-theme'
]
doLast {
File source = new File("${workDirectory}/build/${curriculumFileName}.html")
File target = new File("${workDirectory}/build/${curriculumFileName}-${lang.toLowerCase()}.html")
source.renameTo(target)
}
}
}
tasks.register('buildDocs') {
description = 'Grouping task for generating all languages in several formats'
group = 'documentation'
dependsOn includeLearningObjectives, buildPDF, buildHTML
}
clean {
delete "build"
delete "${workDirectory}/build"
}
apply from: 'includeLearningObjectives.gradle'
defaultTasks 'buildDocs'