diff options
author | Allan Wang <me@allanwang.ca> | 2018-10-08 03:17:35 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2018-10-08 03:17:35 -0400 |
commit | 595d08639587c8631fe6884d4aed62db5b16f5e3 (patch) | |
tree | 3057e9980d18f34eba7c905cae11a7fd5ee9b935 /artifacts.gradle | |
parent | 22fe1f537f4c17e145334bbed324558ebf2e4e91 (diff) | |
parent | 2ed21b32c9e77da5f957cfbf9d73a0a563b8511c (diff) | |
download | kau-595d08639587c8631fe6884d4aed62db5b16f5e3.tar.gz kau-595d08639587c8631fe6884d4aed62db5b16f5e3.tar.bz2 kau-595d08639587c8631fe6884d4aed62db5b16f5e3.zip |
Merge dev
Diffstat (limited to 'artifacts.gradle')
-rw-r--r-- | artifacts.gradle | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/artifacts.gradle b/artifacts.gradle index 12dd3fa..c0c344a 100644 --- a/artifacts.gradle +++ b/artifacts.gradle @@ -31,6 +31,8 @@ artifacts { // We assume resources within res-public are public task generatepublicxml { + println "Generating public XML" + def resDir = project.projectDir.absolutePath + "/src/main/res-public" def publicFolder = file(resDir + "/values") @@ -64,7 +66,7 @@ task generatepublicxml { ) { // Leave file comment destXmlMkp.yield "\r\n" - destXmlMkp.comment("AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task") + destXmlMkp.comment("AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task") if (tree.isEmpty()) "public"("name": "dummy", "type": "id") @@ -96,4 +98,6 @@ task generatepublicxml { } } } -}
\ No newline at end of file +} + +build.dependsOn generatepublicxml
\ No newline at end of file |