2017-08-24 23:51:48 +03:00
|
|
|
apply plugin: 'java'
|
|
|
|
repositories{
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2020-02-10 13:04:36 +01:00
|
|
|
sourceCompatibility = 1.8
|
2017-08-24 23:51:48 +03:00
|
|
|
jar {
|
|
|
|
manifest {
|
2020-02-10 19:28:51 +01:00
|
|
|
attributes("Implementation-Title": "w2phtml",
|
|
|
|
"Implementation-Version": "0.4.4",
|
2017-08-24 23:51:48 +03:00
|
|
|
"Main-Class" : "writer2latex.Application",
|
|
|
|
"Class-Path" : "jasp.jar parser.jar")
|
|
|
|
}
|
|
|
|
}
|
2017-08-28 17:34:02 +03:00
|
|
|
configurations{
|
|
|
|
bundledLibs
|
|
|
|
}
|
2017-08-24 23:51:48 +03:00
|
|
|
dependencies{
|
2017-08-28 17:34:02 +03:00
|
|
|
bundledLibs 'org.libreoffice:jurt:5.3.2'
|
|
|
|
bundledLibs 'org.libreoffice:juh:5.3.2'
|
|
|
|
bundledLibs 'org.libreoffice:ridl:5.3.2'
|
|
|
|
bundledLibs 'org.libreoffice:unoil:5.3.2'
|
2017-08-29 00:02:10 +03:00
|
|
|
compile 'junit:junit:4.12'
|
2017-08-28 17:34:02 +03:00
|
|
|
bundledLibs files('idl')
|
|
|
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
|
|
|
}
|
|
|
|
jar {
|
|
|
|
from {
|
|
|
|
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
|
|
|
|
}
|
|
|
|
from('src/main/java') {
|
|
|
|
include '**/*.properties'
|
2017-08-29 00:02:10 +03:00
|
|
|
include '**/*.xml'
|
|
|
|
exclude '**/*Test.class'
|
|
|
|
exclude '**/AllTests.class'
|
|
|
|
exclude 'org/openoffice/**/*'
|
2017-08-28 17:34:02 +03:00
|
|
|
}
|
2017-08-24 23:51:48 +03:00
|
|
|
}
|
2017-08-29 13:59:07 +03:00
|
|
|
task xhtml(type: Jar) {
|
|
|
|
manifest {
|
2020-02-10 19:28:51 +01:00
|
|
|
attributes("Implementation-Title": "w2phtml",
|
|
|
|
"Implementation-Version": "0.4.4",
|
2017-08-29 13:59:07 +03:00
|
|
|
"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'
|
|
|
|
from 'src/main/java'
|
|
|
|
include 'writer2latex/xhtml/**/*.properties'
|
|
|
|
include 'writer2latex/xhtml/**/**/*.properties'
|
|
|
|
from sourceSets.main.output
|
|
|
|
include 'org/**/*'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
task oxt(type: Zip){
|
|
|
|
dependsOn xhtml
|
2020-02-10 13:04:36 +01:00
|
|
|
archiveName 'w2phtml.oxt'
|
2017-08-29 13:59:07 +03:00
|
|
|
from 'src/main/oxt/writer2xhtml'
|
|
|
|
include '*'
|
|
|
|
include '**'
|
|
|
|
from 'build/libs/writer2xhtml-filter.jar'
|
|
|
|
include '*'
|
|
|
|
from 'src/main/idl/writer2xhtml'
|
|
|
|
include 'writer2xhtml.rdb'
|
|
|
|
}
|