forked from zkoss/zk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
380 lines (341 loc) · 11.3 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
id 'maven-publish'
id 'checkstyle'
id 'com.github.node-gradle.node' version '3.1.0'
id 'com.github.gmazzo.buildconfig' version '3.0.3'
id 'idea'
id "org.sonarqube" version "4.4.1.3373"
}
sonarqube {
properties {
property 'sonar.sources', '*/src/main/java,*/src/main/resources/web'
}
}
idea {
module {
outputDir file("$buildDir/classes/main")
testOutputDir file("$buildDir/classes/test")
}
}
allprojects {
apply plugin: 'com.github.node-gradle.node'
}
def zkcmlDir = "$rootDir/../zkcml"
def resources = 'src/main/resources'
def codegen = 'codegen/resources'
ext {
zkprojects = [
'zk' : "$rootDir/zk",
'zkplus' : "$rootDir/zkplus",
'zweb-dsp' : "$rootDir/zweb-dsp",
'zhtml' : "$rootDir/zhtml",
'zweb' : "$rootDir/zweb",
'zel' : "$rootDir/zel",
'zkbind' : "$rootDir/zkbind",
'zcommon' : "$rootDir/zcommon",
'zkwebfragment': "$rootDir/zkwebfragment",
'zul' : "$rootDir/zul",
'za11y' : "$zkcmlDir/za11y",
'zkex' : "$zkcmlDir/zkex",
'zkmax' : "$zkcmlDir/zkmax",
'zml' : "$zkcmlDir/zml",
'zuti' : "$zkcmlDir/zuti",
'stateless' : "$zkcmlDir/stateless",
'stateless-immutable': "$zkcmlDir/stateless-immutable",
'client-bind' : "$zkcmlDir/client-bind"
]
zkcmlprojects = [
'za11y': "$zkcmlDir/za11y",
'zkex' : "$zkcmlDir/zkex",
'zkmax': "$zkcmlDir/zkmax",
'zml' : "$zkcmlDir/zml",
'zuti' : "$zkcmlDir/zuti",
'stateless' : "$zkcmlDir/stateless",
'stateless-immutable': "$zkcmlDir/stateless-immutable",
'client-bind' : "$zkcmlDir/client-bind"
]
}
apply {
from 'release.gradle'
from 'javadoc.gradle'
}
// add repositories here for checkstyle plugin
repositories {
mavenCentral()
}
task buildESLintPlugin(type: NpmTask) {
dependsOn npm_install
args = ['run', 'build', '-w', "eslint-plugin-zk"]
}
if (project.ext['gradleFrontendSkip'] == 'false') {
clean {
dependsOn npm_install
dependsOn buildESLintPlugin
}
classes.dependsOn npm_install
}
subprojects {
// Repositories for all subprojects (from 9.6.0 zk-parent)
repositories {
mavenCentral()
maven {
name = 'ZK Repository'
url = uri('https://mavensync.zkoss.org/maven2')
}
}
// Prepare the result of TypeScript before gradle assemble
task compileTypeScript() {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
if (new File("$projectDir/$resources/web/js").exists()) {
inputs.dir("$projectDir/$resources/web/js")
outputs.dir("$projectDir/$codegen/web/js")
doLast {
exec {
commandLine "$rootDir/node_modules/.bin/gulp", 'build:single', "--src=$projectDir/$resources/web/js", "--dest=$projectDir/$codegen/web/js"
}
}
}
}
task compileCSS() {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
if (new File("$projectDir/$resources/web/$project.name/css").exists()) {
inputs.dir("$projectDir/$resources/web/$project.name/css")
outputs.dir("$projectDir/$codegen/web/$project.name/css")
doLast {
exec {
commandLine "$rootDir/node_modules/.bin/gulp", 'build:minify-css', "--src=$projectDir/$resources/web/$project.name/css", "--dest=$projectDir/$codegen/web/$project.name/css"
}
}
}
}
java.sourceCompatibility = JavaVersion.VERSION_11
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
checkstyle {
toolVersion '10.11.0'
}
task tscheck(type: NpmTask) {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
enabled = project.file("tsconfig.json").exists()
workingDir = rootDir
args =['run', 'type-check', '--', '--project', "$projectDir"]
}
// eslint
task jscheck(type: NpmTask) {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
workingDir = rootDir
def eslintDir = project.file(".eslintrc.js").exists() ? projectDir : rootDir;
args =['run', 'lint', '--', "$projectDir/$resources/web/js", "--config=$eslintDir/.eslintrc.js", "--ignore-path=$rootDir/.eslintignore"]
}
// NOTE: Do not depend on this task for normal build.
// This task is to make applying eslint auto-fixes easier, and is meant to be
// called manually: `./gradlew jsfix`.
task jsfix(type: NpmTask) {
workingDir = rootDir
def eslintDir = project.file(".eslintrc.js").exists() ? projectDir : rootDir;
args =['run', 'lint', '--', "$projectDir/$resources/web/js", "--config=$eslintDir/.eslintrc.js", "--ignore-path=$rootDir/.eslintignore", "--fix"]
}
check {
dependsOn(tscheck)
dependsOn(jscheck)
}
// Compile LESS
task compileLess() {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
if (new File("$projectDir/$resources/web/$project.name/").exists()) {
inputs.dir("$projectDir/$resources/web/$project.name/")
outputs.dir("$projectDir/$codegen/web/$project.name/")
doLast {
exec {
commandLine "$rootDir/node_modules/.bin/zklessc", '-s', "$projectDir/$resources/web/", '-o', "$projectDir/$codegen/web/", '-i', "$rootDir/zul/$resources/web/", '-i', "$zkcmlDir/zkmax/$resources/web/", '-c'
}
}
}
}
task codegenMessages() {
if (new File("$projectDir/$resources/metainfo/mesg").exists()) {
doFirst {
exec {
commandLine 'bash', "$rootDir/bin/genprop", '-x', "$projectDir/$resources/metainfo/mesg/", "$projectDir/src/main/java/"
}
}
}
}
compileJava {
dependsOn(codegenMessages)
}
// Configure additional resource for generated resources
processResources() {
dependsOn(compileJava)
dependsOn(compileTypeScript)
dependsOn(compileLess)
dependsOn(compileCSS)
from("$projectDir/$codegen") {
setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
}
// replace @version@ token in xml files
from('src/main/resources') {
include "**/config.xml", "**/lang.xml", "**/lang-addon.xml"
filter(ReplaceTokens, tokens: [version: "$version".toString()])
// Gstring to String
setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
}
}
jar {
manifest {
attributes(
"Specification-Version": project.properties['version'],
"Implementation-Version": project.properties['version']
)
// Merge specify MANIFEST.MF file.
from "$projectDir/$resources/META-INF/MANIFEST.MF"
}
}
// build sources jar each subproject for bundle
task sourcesJar(type: Jar) {
dependsOn(generateBuildConfig)
archiveClassifier = 'sources'
// add generated java in to source
from "$buildDir/generated/source/buildConfig/main/main"
from 'src/main/java'
exclude "**/package.html"
setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
}
// build javadoc jar each subproject for bundle
task javadocJar(type: Jar) {
dependsOn 'buildJavadoc'
setOnlyIf { project.name != 'zkwebfragment' && project.name != 'zweb-dsp' }
archiveClassifier = 'javadoc'
from "$javadoc.destinationDir"
}
// TODO: add the manifest file into sources.jar for ZK-4132 (build special osgi sources.jar)
task buildOSGi() {
dependsOn 'jar'
dependsOn 'sourcesJar'
doFirst {
// generate the bnd config files for osgi
def bndContent = "Bundle-Version:${version}\nImport-Package: *;resolution:=optional\nExport-Package: *;version=${version}\nBundle-Name:${project.name}\nBundle-SymbolicName:${project.name}"
if ("${project.name}" == 'zweb') {
bndContent = "Bundle-Version:${version}\nImport-Package: javax.servlet.annotation;resolution:=optional,*;resolution:=optional\nExport-Package: *;version=${version}\nBundle-Name:${project.name}\nBundle-SymbolicName:${project.name}"
} else if ("${project.name}" == 'zkbind') {
bndContent = "Bundle-Version:${version}\nImport-Package:javassist.util.proxy;resolution:=optional,*;resolution:=optional\nExport-Package: *;version=${version}\nBundle-Name:${project.name}\nBundle-SymbolicName:${project.name}"
} else if ("${project.name}" == 'zkex') {
bndContent = "Bundle-Version:${version}\nImport-Package:org.zkoss.zk.ui.sys;resolution:=optional,*;resolution:=optional\nExport-Package: !org.zkoss.zk.ui.sys,*;version=${version}\nBundle-Name:${project.name}\nBundle-SymbolicName:${project.name}"
} else if ("${project.name}" == 'zweb-dsp') {
def fragmentHostVersion = "${version}"
// Fragment-Host not support version with suffix e.g. x.x.x-FL
fragmentHostVersion = fragmentHostVersion.split(/[\.-][a-zA-Z]/)[0]
bndContent += "\nFragment-Host:zweb;bundle-version=$fragmentHostVersion"
}
new File("$buildDir/libs", "${project.name}.bnd").text = bndContent
}
doLast {
// build osgi jar
javaexec {
main = "-jar";
args = [
"$rootDir/dist/lib/ext/bnd.jar",
"wrap",
"--properties",
"$buildDir/libs/${project.name}.bnd",
"--output",
"$buildDir/libs/${project.name}.osgi.jar",
"$buildDir/libs/${project.name}-${version}.jar"
]
}
copy {
from "$buildDir/libs/${project.name}.osgi.jar"
into "$rootDir/build/dist/lib/osgi"
}
// build osgi source jar
javaexec {
main = "-jar";
args = [
"$rootDir/dist/lib/ext/bnd.jar",
"wrap",
"--properties",
"$buildDir/libs/${project.name}.bnd",
"--output",
"$buildDir/libs/${project.name}-sources.osgi.jar",
"$buildDir/libs/${project.name}-${version}-sources.jar"
]
}
copy {
from "$buildDir/libs/${project.name}-sources.osgi.jar"
into "$rootDir/build/dist/lib/osgi-src"
rename "${project.name}-sources.osgi.jar", "${project.name}-sources.jar"
}
}
}
// Delete codegen folder before clean
clean.doFirst {
delete "$projectDir/codegen/"
}
}
task tscheck(type: NpmTask) {
setOnlyIf { project.ext['gradleFrontendSkip'] == 'false' }
args =['run', 'type-check']
}
check.dependsOn(tscheck)
// Version Check
def fileCheck(file, regex) {
println "version check: ${file.path}"
int matchFound = 0
file.eachLine { line ->
if (line ==~ regex)
matchFound++
}
if (matchFound == 0)
throw new ResourceException("version check faild with: ${file.path}")
}
// check version: gradle versionCheck -Pcheck.version={VERSION}
task versionCheck() {
if (project.hasProperty("check.version")) {
fileTree("../").matching {
include "**/gradle.properties"
}.each {
fileCheck(it, /version=${project.getProperty("check.version")}/)
}
}
}
task cleanJsdoc(type: Delete) {
dependsOn(clean)
delete "$projectDir/jsdoc/codegen/"
}
clean {
// also clean cml
if (!project.hasProperty("cleanZKOnly") && gradle.includedBuilds.find {it.name == 'zkcml'} != null) {
dependsOn(gradle.includedBuild('zkcml').task(':clean'))
zkcmlprojects.each { prjName, dir ->
dependsOn(gradle.includedBuild('zkcml').task(":$prjName:clean"))
}
// also clean themes
dependsOn(gradle.includedBuild('zkthemes').task(':clean'))
dependsOn(gradle.includedBuild('zkthemes').task(':breeze:clean'))
dependsOn(gradle.includedBuild('zkthemes').task(':sapphire:clean'))
dependsOn(gradle.includedBuild('zkthemes').task(':silvertail:clean'))
// also clean sandbox
dependsOn(gradle.includedBuild('zksandbox').task(':clean'))
}
}
// change all the version in gradle.properties under zk
// e.g. ./gradlew upVer -PchangeVersionTo=10.0.1-SNAPSHOT
task upVer() {
doLast {
if (project.hasProperty("changeVersionTo")) {
fileTree("$rootDir/").matching {
include "**/gradle.properties"
}.each { file ->
println "upVer: ${file.path} from ${project.version} to ${project.changeVersionTo}"
ant.replaceregexp(
file: file,
match: "version=$project.version",
replace: "version=$project.changeVersionTo",
)
}
}
}
}