Gradle oxt task added
This commit is contained in:
parent
df8cd4f922
commit
f24e9af55e
1 changed files with 60 additions and 1 deletions
59
build.gradle
59
build.gradle
|
@ -38,4 +38,63 @@ jar {
|
||||||
exclude 'org/openoffice/**/*'
|
exclude 'org/openoffice/**/*'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
task xhtml(type: Jar) {
|
||||||
|
manifest {
|
||||||
|
attributes("Implementation-Title": "Writer2xhtml",
|
||||||
|
"Implementation-Version": "0.1.2",
|
||||||
|
"Built-By": "litvinovg",
|
||||||
|
"RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration",
|
||||||
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
|
}
|
||||||
|
baseName = "writer2xhtml-filter"
|
||||||
|
from {
|
||||||
|
configurations.bundledLibs.collect {
|
||||||
|
it.isDirectory() ? it : zipTree(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
from sourceSets.main.output
|
||||||
|
exclude '**/*Test.class'
|
||||||
|
exclude '**/AllTests.class'
|
||||||
|
include 'org/openoffice/da/comp/wl2common/**/*.class'
|
||||||
|
include 'org/openoffice/da/comp/writer2xhtml/**/*.class'
|
||||||
|
include 'org/openoffice/da/comp/wl2common/**/*.properties'
|
||||||
|
include 'writer2latex/api/**/*.class'
|
||||||
|
include 'writer2latex/base/**/*.class'
|
||||||
|
include 'writer2latex/epub/**/*.class'
|
||||||
|
include 'writer2latex/office/**/*.class'
|
||||||
|
include 'writer2latex/util/**/*.class'
|
||||||
|
include 'writer2latex/xhtml/**/*.class'
|
||||||
|
include 'writer2latex/xhtml/**/*.xml'
|
||||||
|
include 'writer2latex/xmerge/**/*.class'
|
||||||
|
include 'writer2latex/latex/StarMathConverter.class'
|
||||||
|
include 'writer2latex/latex/CharClasses.class'
|
||||||
|
include 'writer2latex/latex/Token.class'
|
||||||
|
include 'writer2latex/latex/TGroup.class'
|
||||||
|
include 'writer2latex/latex/SmTokenTableEntry.class'
|
||||||
|
include 'writer2latex/latex/SmTokenTable.class'
|
||||||
|
include 'writer2latex/latex/SmToken.class'
|
||||||
|
include 'writer2latex/latex/LaTeXDocumentPortion.class'
|
||||||
|
include 'writer2latex/latex/LaTeXConfig.class'
|
||||||
|
include 'writer2latex/latex/util/HeadingMap.class'
|
||||||
|
include 'writer2latex/latex/util/StyleMap.class'
|
||||||
|
include 'writer2latex/latex/i18n/*.class'
|
||||||
|
from 'src/main/java'
|
||||||
|
include 'writer2latex/xhtml/**/*.properties'
|
||||||
|
include 'writer2latex/xhtml/**/**/*.properties'
|
||||||
|
from sourceSets.main.output
|
||||||
|
include 'org/**/*'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
task oxt(type: Zip){
|
||||||
|
dependsOn xhtml
|
||||||
|
archiveName 'writer2xhtml.oxt'
|
||||||
|
from 'src/main/oxt/writer2xhtml'
|
||||||
|
include '*'
|
||||||
|
include '**'
|
||||||
|
from 'build/libs/writer2xhtml-filter.jar'
|
||||||
|
include '*'
|
||||||
|
from 'src/main/idl/writer2xhtml'
|
||||||
|
include 'writer2xhtml.rdb'
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue