Build gradle change

This commit is contained in:
Georgy Litvinov 2020-07-27 16:54:46 +02:00
parent 24fbce116d
commit 204cd8dc15

View file

@ -2,7 +2,7 @@ apply plugin: 'java'
repositories{ repositories{
mavenCentral() mavenCentral()
} }
def releaseVersion = "0.7.3" def releaseVersion = "0.7.4"
def propertyFile = file "src/main/java/w2phtml/project.properties" def propertyFile = file "src/main/java/w2phtml/project.properties"
Properties properties = new Properties() Properties properties = new Properties()
propertyFile.withReader { properties.load(it) } propertyFile.withReader { properties.load(it) }
@ -90,7 +90,7 @@ task xhtml2(type: Jar) {
manifest { manifest {
attributes("Implementation-Title": rootProject.name, attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion, "Implementation-Version": releaseVersion,
"RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration", "RegistrationClassName" : "pro.litvinovg.w2phtml.RegistrationHandler",
"Class-Path" : "jasp.jar parser.jar") "Class-Path" : "jasp.jar parser.jar")
} }
baseName = "writer2phtml" baseName = "writer2phtml"
@ -106,19 +106,21 @@ task xhtml2(type: Jar) {
include 'org/openoffice/da/comp/wl2common/**/*.class' include 'org/openoffice/da/comp/wl2common/**/*.class'
include 'org/openoffice/da/comp/writer2xhtml/**/*.class' include 'org/openoffice/da/comp/writer2xhtml/**/*.class'
include 'org/openoffice/da/comp/wl2common/**/*.properties' include 'org/openoffice/da/comp/wl2common/**/*.properties'
include 'w2phtml/api/**/*.class' include 'w2phtml/pageSplitters/**/*.class'
include 'w2phtml/base/**/*.class' include 'pro/litvinovg/**/*.class'
include 'w2phtml/epub/**/*.class' include 'w2phtml/api/**/*.class'
include 'w2phtml/office/**/*.class' include 'w2phtml/base/**/*.class'
include 'w2phtml/util/**/*.class' include 'w2phtml/epub/**/*.class'
include 'w2phtml/xhtml/**/*.class' include 'w2phtml/office/**/*.class'
include 'w2phtml/xhtml/**/*.xml' include 'w2phtml/util/**/*.class'
include 'w2phtml/xmerge/**/*.class' include 'w2phtml/xhtml/**/*.class'
from 'src/main/java' include 'w2phtml/xhtml/**/*.xml'
include 'w2phtml/xhtml/**/*.properties' include 'w2phtml/xmerge/**/*.class'
include 'w2phtml/xhtml/**/**/*.properties' from 'src/main/java'
from sourceSets.main.output include 'w2phtml/xhtml/**/*.properties'
include 'org/**/*' include 'w2phtml/xhtml/**/**/*.properties'
from sourceSets.main.output
include 'org/**/*'
} }