From 204cd8dc15e8d879ed1c22da1350700928a2ce32 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Mon, 27 Jul 2020 16:54:46 +0200 Subject: [PATCH] Build gradle change --- build.gradle | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index fa900c0..08c242e 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'java' repositories{ mavenCentral() } -def releaseVersion = "0.7.3" +def releaseVersion = "0.7.4" def propertyFile = file "src/main/java/w2phtml/project.properties" Properties properties = new Properties() propertyFile.withReader { properties.load(it) } @@ -90,7 +90,7 @@ task xhtml2(type: Jar) { manifest { attributes("Implementation-Title": rootProject.name, "Implementation-Version": releaseVersion, - "RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration", + "RegistrationClassName" : "pro.litvinovg.w2phtml.RegistrationHandler", "Class-Path" : "jasp.jar parser.jar") } baseName = "writer2phtml" @@ -106,19 +106,21 @@ task xhtml2(type: Jar) { include 'org/openoffice/da/comp/wl2common/**/*.class' include 'org/openoffice/da/comp/writer2xhtml/**/*.class' include 'org/openoffice/da/comp/wl2common/**/*.properties' - include 'w2phtml/api/**/*.class' - include 'w2phtml/base/**/*.class' - include 'w2phtml/epub/**/*.class' - include 'w2phtml/office/**/*.class' - include 'w2phtml/util/**/*.class' - include 'w2phtml/xhtml/**/*.class' - include 'w2phtml/xhtml/**/*.xml' - include 'w2phtml/xmerge/**/*.class' - from 'src/main/java' - include 'w2phtml/xhtml/**/*.properties' - include 'w2phtml/xhtml/**/**/*.properties' - from sourceSets.main.output - include 'org/**/*' + include 'w2phtml/pageSplitters/**/*.class' + include 'pro/litvinovg/**/*.class' + include 'w2phtml/api/**/*.class' + include 'w2phtml/base/**/*.class' + include 'w2phtml/epub/**/*.class' + include 'w2phtml/office/**/*.class' + include 'w2phtml/util/**/*.class' + include 'w2phtml/xhtml/**/*.class' + include 'w2phtml/xhtml/**/*.xml' + include 'w2phtml/xmerge/**/*.class' + from 'src/main/java' + include 'w2phtml/xhtml/**/*.properties' + include 'w2phtml/xhtml/**/**/*.properties' + from sourceSets.main.output + include 'org/**/*' }