forked from Tencent/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeChatPublish.gradle
583 lines (484 loc) · 21.6 KB
/
WeChatPublish.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
def extensionClass
// Detect supported plugin modules
if (plugins.hasPlugin('com.android.library')) {
// Android library mode
extensionClass = WeChatAndroidLibraryPublishExtension.class
} else if (plugins.hasPlugin('java')) {
// Java library mode
extensionClass = WeChatJavaLibraryPublishExtension.class
} else {
// TODO: Support more languages
throw new GradleException('This plugin must be applied after "java" or "com.android.library" plugin')
}
// Register wechatPublish extension
extensions.create('wechatPublish', extensionClass, project)
ext.artifactId = name
class WeChatPublishExtension {
boolean isSnapshot = true
private String versionSuffix = ''
protected boolean printModules = false
boolean withJavadoc = true
boolean withSources = true
boolean withNativeSymbols = true
boolean withDependencies = true
boolean publishToBintray = false /* Deprecated */
boolean publishAllVariants = false
Set<String> publishVariants = []
boolean publishAllFlavors = true
Set<String> publishFlavors = []
String defaultFlavor
private final Project project
private boolean usedDefaultIsSnapshot = true
private final ArrayList<Closure> mavenPublishClosures = []
protected final ArrayList<Closure> pomClosures = []
WeChatPublishExtension(Project proj) {
project = proj
fillDefaultConfiguration()
proj.afterEvaluate { this.publish() }
}
protected final String uncapitalize(String str) {
if (str == null || str.isEmpty()) {
return str
}
return "" + Character.toLowerCase(str.charAt(0)) + str.substring(1)
}
protected void publish() {
// Load local gradle script
applyLocalScript()
// Verify configuration values
verifyPublishConfiguration()
// Emit Maven DSL
// Apply plugins if not done already
if (!project.plugins.hasPlugin('maven-publish')) {
project.plugins.apply('maven-publish')
}
mountAdditionalLogic(project)
emitPublicationDSL(project)
if (project.hasProperty('signingKeyId') || project.hasProperty('signing.keyId')) {
if (!project.plugins.hasPlugin('signing')) {
project.plugins.apply('signing')
}
emitSigningConfig(project)
}
emitRepositoryDSL(project)
}
void bintrayPackage(Closure cl) {
// if (cl != null)
// bintrayConfigureClosures << cl
}
void publishToMaven(Closure cl) {
if (cl != null)
mavenPublishClosures << cl
}
void pom(Closure cl) {
if (cl != null)
pomClosures << cl
}
void publishToBintray(Closure cl) {
if (cl != null) {
publishToBintray = true
// bintrayConfigureClosures << cl
}
}
String getFullVersion() {
def ver = version + versionSuffix
if (isSnapshot && !ver.endsWith('-SNAPSHOT'))
ver += '-SNAPSHOT'
return ver
}
protected void fillDefaultConfiguration() {
isSnapshot = !project.rootProject.hasProperty('release')
printModules = project.rootProject.hasProperty('printModules')
if (project.rootProject.hasProperty('versionSuffix'))
versionSuffix = project.rootProject.versionSuffix
}
private void applyLocalScript() {
def localScriptFile
if (project.rootProject.hasProperty('repoScript')) {
// Repo script file specified using -PrepoScript=xxx argument, use that script.
def repoScript = project.rootProject.property('repoScript')
if (!repoScript.startsWith('/'))
repoScript = "${System.getProperty('user.dir')}/${repoScript}"
localScriptFile = new File(repoScript)
} else {
// No -PrepoScript=xxx argument, try 'local.gradle' in projectDir then rootProjectDir
localScriptFile = project.file('local.gradle')
if (!localScriptFile.file)
localScriptFile = project.rootProject.file('local.gradle')
}
if (localScriptFile.file) {
project.apply from: localScriptFile
}
}
private void verifyPublishConfiguration() {
// Warn default artifactId, groupId, version
if (groupId.empty) {
groupId = 'com.tencent.mm'
System.err.println "groupId not specified, used default value: ${groupId}"
}
if (version == 'unspecified') {
version = '0.1'
System.err.println "version not specified, used default value: ${version}"
}
checkVersion()
if (!usedDefaultIsSnapshot) {
System.err.println 'isSnapshot should be avoided in build scripts.'
}
if (isSnapshot) {
// Bintray does not allow SNAPSHOT publish
publishToBintray = false
}
project.ext.fullVersion = fullVersion
}
private void checkVersion() {
if (!(fullVersion ==~ /\d+\.\d+(?:\.\d+)?(?:\.\d+)?(?:-[\w-]+)?/)) {
def message = "Invalid version: ${fullVersion}"
if (!isSnapshot)
throw new GradleException(message)
System.err.println(message)
}
}
final protected String getPublicationName() {
String result = ""
artifactId.split("[-_]").each { result += it.capitalize() }
return uncapitalize(result)
}
protected void mountAdditionalLogic(project) {}
protected void emitPublicationDSL(Project project) {}
private void emitSigningConfig(Project project) {
project.ext['signing.keyId'] = project.findProperty("signingKeyId")
project.ext['signing.password'] = project.findProperty("signingPassword")
project.ext['signing.secretKeyRingFile'] = project.findProperty("signingSecretKeyRingFile")
project.signing {
project.publishing.publications.all { publication ->
sign publication
}
}
}
private void emitRepositoryDSL(Project project) {
mavenPublishClosures.each { cl ->
project.publishing.repositories {
maven {
cl.delegate = delegate
cl()
}
}
}
if (publishToBintray) {
System.err.println("[WeChatPublish] [W] 'publishToBintray' was deprecated and ignored now, consider migrate to MavenCentral instead.")
}
}
String getArtifactId() {
return project.artifactId
}
void setArtifactId(String id) {
project.artifactId = id
}
String getGroupId() {
return project.group
}
void setGroupId(String id) {
project.group = id
}
String getVersion() {
return project.version
}
void setVersion(String ver) {
project.version = ver
}
void setIsSnapshot(boolean v) {
isSnapshot = v
usedDefaultIsSnapshot = false
}
}
class WeChatJavaLibraryPublishExtension extends WeChatPublishExtension {
WeChatJavaLibraryPublishExtension(Project project) {
super(project)
}
@Override
protected void mountAdditionalLogic(project) {
// Print module description if needed
if (printModules) {
def anchorTask = project.tasks.findByName('compileJava')
def printTask = project.task('printPublishArtifactInfo').doFirst {
println "@@@WeChatPublish@@@ ${artifactId}: ${fullVersion}"
}
anchorTask.dependsOn printTask
}
}
@Override
protected void emitPublicationDSL(Project project) {
def sourcesJarTask = project.task('sourcesJar', type: Jar) {
classifier = 'sources'
def srcDirs = []
def sources = project.sourceSets.main
['java', 'groovy', 'scala', 'kotlin'].each {
if (sources.hasProperty(it))
srcDirs << sources[it].srcDirs
}
from srcDirs
}
def javadocTask = (project.tasks.findByName('javadoc') as Javadoc).with {
title = null
options {
memberLevel = JavadocMemberLevel.PUBLIC
def doclavaJar = project.rootProject.file('gradle/doclava-1.0.6.jar')
if (doclavaJar.exists()) {
doclet = 'com.google.doclava.Doclava'
docletpath = [doclavaJar]
}
//docletpath = project.configurations.doclava.files as List
}
it
}
def javadocJarTask = project.task('javadocJar', type: Jar) {
dependsOn javadocTask
classifier = 'javadoc'
from javadocTask.destinationDir
}
// TODO: upload javadoc to documentation site
project.publishing.publications {
"${publicationName}" (MavenPublication) {
from project.components.java
groupId this.groupId
artifactId this.artifactId
version this.fullVersion
// Emit sourcesJar task
if (withSources) {
artifact sourcesJarTask
}
// Emit javadocJar task
if (withJavadoc) {
artifact javadocJarTask
}
}
}
pomClosures.each { cl ->
project.publishing.publications {
"${publicationName}"(MavenPublication) {
pom cl
}
}
}
}
}
class WeChatAndroidLibraryPublishExtension extends WeChatPublishExtension {
WeChatAndroidLibraryPublishExtension(Project project) {
super(project)
}
@Override
protected void mountAdditionalLogic(project) {
// Print module description if needed
if (printModules) {
def anchorTask = project.tasks.findByName('preBuild')
def printTask = project.task('printPublishArtifactInfo').doFirst {
println "@@@WeChatPublish@@@ ${artifactId}: ${fullVersion}"
}
anchorTask.dependsOn printTask
}
}
@Override
protected void emitPublicationDSL(Project project) {
HashSet<String> emittedFlavors = new HashSet<>()
def android = project.android
def hasReleaseVariant = false
android.libraryVariants.all { variant ->
def variantName = variant.name
def cVariantName = variantName.capitalize()
def flavorName = variant.flavorName
def variantOnlyName = uncapitalize(variantName.substring(flavorName.length(), variantName.length()))
def hasFlavor = variant.flavorName != null && !variant.flavorName.isEmpty()
if (flavorName == defaultFlavor)
flavorName = ''
def cFlavorName = flavorName.capitalize()
if (!publishAllFlavors && !flavorName.empty && !publishFlavors.contains(flavorName))
return
def generateSourcesTask = project.tasks.findByName("generate${cVariantName}Sources")
def javadocTask = project.task("javadoc${cVariantName}", type: Javadoc) {
group = 'documentation'
title = null
def classpathFiles = project.files(android.getBootClasspath().join(File.pathSeparator))
classpathFiles += project.files(project.configurations.compile)
doFirst { classpath += classpathFiles }
source = variant.javaCompile.source
options {
memberLevel = JavadocMemberLevel.PUBLIC
def doclavaJar = project.rootProject.file('gradle/doclava-1.0.6.jar')
if (doclavaJar.exists()) {
doclet = 'com.google.doclava.Doclava'
docletpath = [doclavaJar]
}
//docletpath = project.configurations.doclava.files as List
}
destinationDir = project.file("${project.buildDir}/docs/javadoc")
exclude '**/BuildConfig.java'
exclude '**/R.java'
failOnError false
dependsOn generateSourcesTask
}
def javadocJarTask = project.task("javadocJar${cVariantName}", type: Jar) {
classifier = 'javadoc'
from javadocTask.destinationDir
dependsOn javadocTask
}
def sourcesJarTask = project.task("sourcesJar${cVariantName}", type: Jar) {
classifier = 'sources'
def srcDirs = []
variant.sourceSets.each { sources ->
['java', 'groovy', 'scala', 'kotlin'].each {
if (sources.hasProperty(it))
srcDirs << sources[it].srcDirs
}
}
from srcDirs
dependsOn generateSourcesTask
}
def externalNativeBuildTask = project.tasks.findByName(
"externalNativeBuild${cVariantName}")
Zip nativeSymbolZipTask = null
if (externalNativeBuildTask != null) {
nativeSymbolZipTask = project.task("nativeSymbolZip${cVariantName}", type: Zip) {
classifier = "${variantOnlyName}Symbols"
from externalNativeBuildTask.objFolder
include '*/*.so'
dependsOn externalNativeBuildTask
}
externalNativeBuildTask.doLast {
// If externalNativeBuild generates no shared library files,
// remove symbols artifact from the publication.
if (nativeSymbolZipTask.inputs.sourceFiles.empty) {
def publication = project.publishing.publications
.getByName("${publicationName}${cFlavorName}")
publication.artifacts.removeIf {
it.file == nativeSymbolZipTask.archivePath
}
}
}
}
def bundleTask = project.tasks.findByName("bundle${cVariantName}Aar")
if (bundleTask == null)
bundleTask = project.tasks.findByName("bundle${cVariantName}")
project.publishing.publications {
"${publicationName}${cFlavorName}"(MavenPublication) {
if (variantOnlyName == 'release') {
hasReleaseVariant = true
artifact(source: bundleTask, classifier: null)
if (withSources) {
artifact(source: sourcesJarTask, classifier: 'sources')
}
if (withJavadoc) {
artifact(source: javadocJarTask, classifier: 'javadoc')
}
if (withNativeSymbols && nativeSymbolZipTask != null) {
artifact(source: nativeSymbolZipTask, classifier: 'symbols')
}
} else if (publishAllVariants || publishVariants.contains(variantOnlyName)) {
artifact(source: bundleTask, classifier: variantOnlyName)
if (withNativeSymbols && nativeSymbolZipTask != null) {
artifact(source: nativeSymbolZipTask, classifier: "${variantOnlyName}Symbols")
}
}
if (!emittedFlavors.contains(flavorName)) {
emittedFlavors << flavorName
groupId this.groupId
version this.fullVersion
if (hasFlavor) {
def currFlavor = variant.productFlavors.get(0)
def actualArtifactIdSuffix = ''
if (currFlavor.ext.has('artifactIdSuffix')) {
actualArtifactIdSuffix = currFlavor.ext.artifactIdSuffix
int firstNotBarPos = 0
while (firstNotBarPos < actualArtifactIdSuffix.length()
&& actualArtifactIdSuffix.charAt(firstNotBarPos) == '-') {
++firstNotBarPos
}
actualArtifactIdSuffix = actualArtifactIdSuffix.substring(firstNotBarPos)
} else {
actualArtifactIdSuffix = flavorName
}
artifactId actualArtifactIdSuffix.empty ?
this.artifactId : "${this.artifactId}-${actualArtifactIdSuffix}"
} else {
artifactId this.artifactId
}
pom {
packaging 'aar'
withXml {
// Resolve dependencies
final depsNode = asNode().appendNode('dependencies')
final addDep = { Dependency dep, String scope ->
if (dep.group == null || dep.version == null || dep.name == null
|| dep.name == "unspecified")
return // ignore invalid dependencies
// Determine actual artifactId for the dependency
def artifactId = dep.name
def version = dep.version
if (dep instanceof ProjectDependency) {
def p = (dep as ProjectDependency).dependencyProject
if (p.hasProperty('artifactId'))
artifactId = p.property('artifactId')
if (p.hasProperty('fullVersion'))
version = p.property('fullVersion')
}
def node = depsNode.appendNode('dependency')
node.appendNode('groupId', dep.group)
node.appendNode('artifactId', artifactId)
node.appendNode('version', version)
node.appendNode('scope', scope)
if (!dep.transitive) {
// If this dependency is transitive, we should force exclude all its dependencies them from the POM
final exclusionNode = node.appendNode('exclusions').appendNode('exclusion')
exclusionNode.appendNode('groupId', '*')
exclusionNode.appendNode('artifactId', '*')
} else if (!dep.properties.excludeRules.empty) {
// Otherwise add specified exclude rules
final exclusions = node.appendNode('exclusions')
dep.properties.excludeRules.each { ExcludeRule rule ->
def exclusionNode = exclusions.appendNode('exclusion')
exclusionNode.appendNode('groupId', rule.group ?: '*')
exclusionNode.appendNode('artifactId', rule.module ?: '*')
}
}
}
if (withDependencies) {
def visitedDeps = [] as Set<Dependency>
[
'compile': 'compile',
'api': 'compile',
'implementation': 'compile',
'runtimeOnly': 'runtime',
'provided': 'runtime'
].each { conf, scope ->
if (project.configurations.find {
it.name.equals(conf)
}) {
project.configurations[conf].allDependencies.each {
if (visitedDeps.contains(it)) {
return
}
addDep(it, scope)
visitedDeps.add(it)
}
}
}
}
}
}
}
}
}
pomClosures.each { cl ->
project.publishing.publications {
"${publicationName}${cFlavorName}"(MavenPublication) {
pom cl
}
}
}
} // android.libraryVariants.all
// Check whether "release" variant is published
project.afterEvaluate {
if (!hasReleaseVariant)
throw new GradleException('Publishing Android library require "release" variant')
}
}
}