This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
255 lines (212 loc) · 6.45 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import org.gradle.plugins.jsoup.Jsoup
import org.gradle.plugins.pegdown.PegDown
import org.gradle.plugins.lesscss.LessCss
import org.gradle.plugins.xhtmlrenderer.XhtmlToPdf
task wrapper(type: Wrapper) {
gradleVersion = "1.2"
}
// Put the downloads in a different place so clean doesn't wipe them outs
ext.downloadDir = file("downloads")
task cleanDownloads(type: Delete) {
delete downloadDir
}
apply from: "gradle/downloads.gradle"
allprojects {
apply plugin: "base"
apply plugin: "idea"
apply plugin: "jsoup"
apply plugin: "lesscss"
if (project == rootProject) {
apply from: "idea/idea.gradle"
}
repositories {
mavenCentral()
}
configurations {
rhino
}
dependencies {
rhino "rhino:js:1.7R2"
}
lesscss {
rhinoClasspath = configurations.rhino
lessCssRhinoJs = files(downloadLessCssRhino)
}
// Common output settings for all html transforms
tasks.withType(Jsoup) {
destination "$buildDir/html/${name}.html"
inputEncoding "utf-8"
transform {
outputSettings().indentAmount(2).prettyPrint(true)
}
}
ext.copyWithLess = { String name, String dir, Closure config = null ->
def lessTask = task("${name}Less", type: LessCss) {
source fileTree("$dir/style", { include "*.less" })
destination "$buildDir/less/$name"
}
def copyTask = task("${name}Files", type: Sync) {
into "$buildDir/$name"
from(dir) {
exclude "**/*.less"
}
from lessTask, {
into "style"
}
}
configure(copyTask, config)
}
}
copyWithLess("base", "src/resources/base") {
from "src/fonts/lato", {
into "style/fonts"
include "Lato-Regular.ttf"
include "Lato-Bold.ttf"
}
}
copyWithLess("pdf1up", "src/resources/pdf1up")
copyWithLess("pdf2up", "src/resources/pdf2up")
copyWithLess("show", "src/resources/show")
project(":talks").subprojects {
apply plugin: "pegdown"
apply plugin: "xhtmlrenderer"
task concatSlidesMd(type: FileConcatTask) {
source (fileTree("src/slides") { include "*.md" })
destination "$buildDir/slides.md"
joiner "\n\n"
}
task rawHtml(type: PegDown) {
source concatSlidesMd
destination "$buildDir/html/slides-raw.html"
}
["base", "pdf1up", "pdf2up", "show"].each { transformType ->
task ("${transformType}Html", type: Jsoup) { task ->
def path = "src/transforms/${transformType}.groovy"
def global = "$rootDir/$path"
inputs.file global
apply from: global, to: task
def local = "$projectDir/$path"
if (file(local).exists()) {
inputs.file local
apply from: local, to: task
}
}
}
baseHtml.source rawHtml
[pdf1upHtml, pdf2upHtml, showHtml]*.source baseHtml
copyWithLess("base", "src/resources/base") {
from rootProject.baseFiles
from(baseHtml) {
rename ".*", "index.html"
}
}
copyWithLess("pdf1up", "src/resources/pdf1up") {
from rootProject.pdf1upFiles
from(baseFiles) {
exclude "index.html"
}
from(pdf1upHtml) {
rename ".*", "index.html"
}
}
copyWithLess("pdf2up", "src/resources/pdf2up") {
from rootProject.pdf2upFiles
from(baseFiles) {
exclude "index.html"
}
from(pdf2upHtml) {
rename ".*", "index.html"
}
}
copyWithLess("show", "src/resources/show") {
from rootProject.showFiles
from(baseFiles) {
exclude "index.html"
}
from(showHtml) {
rename ".*", "index.html"
}
into ("deckjs") {
from(rootProject.downloadDeckJs) {
include "core/**/*"
include "themes/transition/**/*"
include "jquery*"
include "modernizr*"
include "*license*"
include "extensions/hash/**/*"
}
from(rootProject.downloadDeckExtJs) {
include "extensions/notes/**/*"
include "extensions/clone/**/*"
}
}
}
task pdf
["1up": pdf1upFiles, "2up": pdf2upFiles].each { name, filesTask ->
pdf.dependsOn task("pdf$name", type: XhtmlToPdf) {
inputs.files filesTask
source "$filesTask.destinationDir/index.html"
pdf = file("$buildDir/${name}.pdf")
fonts = fileTree("$filesTask.destinationDir/style/fonts") {
include "*.ttf"
}
}
}
task "package"(overwrite: true, type: Sync) {
into "$buildDir/package"
from showFiles, {
into "slides"
}
from pdf1up, {
rename ".*", "slides.pdf"
}
from "src/demos", {
into "demos"
exclude \
"**/build/**/*",
"**/.gradle/**/*",
"**/out/**/*",
"**/*.ipr",
"**/*.iws",
"**/*.iml",
"**/*.log"
}
includeEmptyDirs = false
}
task packageZip(type: Zip) {
from tasks.package
archiveName "${project.name}.zip"
destinationDir buildDir
}
task openShow() {
dependsOn tasks.package
doLast {
try {
def desktop = getClass().classLoader.loadClass("java.awt.Desktop").newInstance()
desktop.browse(file("${tasks.package.destinationDir}/slides/index.html").toURI())
} catch (ClassNotFoundException e) {
throw new Exception("Must be Java 6+ to use this task")
}
}
}
}
["package", "packageZip", "pdf"].each {
task(it, dependsOn: getTasksByName(it, true))
}
class FileConcatTask extends SourceTask {
@Input @Optional String joiner
private destination
@OutputFile File getDestination() { project.file(destination) }
void setDestination(destination) { this.destination = destination }
@TaskAction
void doFileConcat() {
getDestination().withOutputStream { out ->
getSource().files.sort { it.name }.each {
it.withInputStream { out << it }
if (joiner) {
out << joiner
}
}
}
}
}