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{
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,6 +106,8 @@ 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/pageSplitters/**/*.class'
include 'pro/litvinovg/**/*.class'
include 'w2phtml/api/**/*.class'
include 'w2phtml/base/**/*.class'
include 'w2phtml/epub/**/*.class'