1
0
mirror of synced 2026-08-05 09:47:05 +00:00

Add Deploy Artifacts Support

Fixes gh-7939
This commit is contained in:
Rob Winch
2020-02-05 20:19:02 -06:00
parent b87ea1373d
commit ba4953b057
9 changed files with 212 additions and 2 deletions
+3
View File
@@ -1,5 +1,7 @@
// Docbook and Javadoc building and uploading tasks
apply plugin: 'base'
apply from: "$rootDir/gradle/deploy-docs.gradle"
apply from: "$rootDir/gradle/deploy-schema.gradle"
task docs {
dependsOn 'manual:reference', 'apidocs', 'guides:asciidoctor'
@@ -152,6 +154,7 @@ task schemaZip(type: Zip) {
}
assert xsdFile != null
into (shortName) {
duplicatesStrategy 'exclude'
from xsdFile.path
}
}