Build gradle change
This commit is contained in:
parent
24fbce116d
commit
204cd8dc15
1 changed files with 17 additions and 15 deletions
32
build.gradle
32
build.gradle
|
@ -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/**/*'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue