From 8f3a3263ed21f1f2afd688f7d9980fb9adaaa66c Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Wed, 11 Mar 2020 08:29:06 +0100 Subject: [PATCH] Modified build config --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index c32ed70..510782c 100644 --- a/build.gradle +++ b/build.gradle @@ -83,7 +83,7 @@ task xhtml(type: Jar) { task oxt(type: Zip){ dependsOn = [ 'xhtml', 'setVersion' ] archiveName 'w2phtml.oxt' - from 'src/main/oxt/writer2xhtml' + from 'src/main/oxt' include '*' include '**' from 'build/libs/writer2xhtml-filter.jar' @@ -93,7 +93,7 @@ task oxt(type: Zip){ } task setVersion(){ ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask') - ant.xmltask(source: 'src/main/oxt/writer2xhtml/description.xml', dest: 'src/main/oxt/writer2xhtml/description.xml', report:'true') { + ant.xmltask(source: 'src/main/oxt/description.xml', dest: 'src/main/oxt/description.xml', report:'true') { replace(path: "//*[local-name()='version']/@value", withText: "${releaseVersion}") } }