w2phtml/build.gradle

174 lines
5.9 KiB
Groovy
Raw Normal View History

2017-08-24 23:51:48 +03:00
apply plugin: 'java'
repositories{
mavenCentral()
}
2020-08-17 17:42:21 +02:00
def releaseVersion = "0.8.4"
2020-03-09 15:39:56 +01:00
def propertyFile = file "src/main/java/w2phtml/project.properties"
Properties properties = new Properties()
2020-03-09 15:39:56 +01:00
propertyFile.withReader { properties.load(it) }
properties.setProperty('releaseDate', new Date().format('HH:mm:ss dd-MM-YYYY'))
properties.setProperty('releaseVersion', releaseVersion )
propertyFile.withWriter { properties.store(it, null) }
2017-08-24 23:51:48 +03:00
2020-02-10 13:04:36 +01:00
sourceCompatibility = 1.8
2017-08-28 17:34:02 +03:00
configurations{
2020-02-24 18:31:06 +01:00
bundledLibs
2017-08-28 17:34:02 +03:00
}
2017-08-24 23:51:48 +03:00
dependencies{
2020-02-24 18:31:06 +01: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'
2020-04-23 16:28:17 +02:00
bundledLibs 'org.json:json:20190722'
2020-08-16 12:07:07 +02:00
bundledLibs group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
bundledLibs group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
2020-02-24 18:31:06 +01:00
compile 'junit:junit:4.12'
2020-07-27 21:32:19 +02:00
bundledLibs group: 'com.miglayout', name: 'miglayout-swing', version: '5.2'
2020-06-03 15:17:55 +02:00
bundledLibs group: 'org.apache.jena', name: 'jena-core', version: '3.15.0'
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
2020-08-16 12:07:07 +02:00
bundledLibs group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
bundledLibs group: 'com.opencsv', name: 'opencsv', version: '5.1'
2020-02-24 18:31:06 +01:00
bundledLibs files('idl')
configurations.compile.extendsFrom(configurations.bundledLibs)
2017-08-28 17:34:02 +03:00
}
jar {
2020-07-30 12:32:24 +02:00
manifest {
attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion,
"Main-Class" : "w2phtml.Application",
"Class-Path" : "jasp.jar parser.jar")
}
2017-08-28 17:34:02 +03:00
from {
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
}
from('src/main/java') {
include '**/*.properties'
2020-05-20 17:05:40 +02:00
include '**/*.rdf'
2017-08-29 00:02:10 +03:00
include '**/*.xml'
2020-07-30 12:32:24 +02:00
include 'pro/litvinovg/w2phtml/gui/resources/*.png'
2017-08-29 00:02:10 +03:00
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-03-09 15:39:56 +01:00
attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion,
2017-08-29 13:59:07 +03:00
"RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration",
"Class-Path" : "jasp.jar parser.jar")
}
baseName = "writer2xhtml-filter"
from {
2020-07-27 21:32:19 +02:00
configurations.bundledLibs.collect {
2017-08-29 13:59:07 +03:00
it.isDirectory() ? it : zipTree(it)
2020-07-27 21:32:19 +02:00
}
2017-08-29 13:59:07 +03:00
}
from sourceSets.main.output
exclude '**/*Test.class'
exclude '**/AllTests.class'
2020-07-27 16:41:19 +02:00
exclude '**/*.java'
include 'w2phtml/pageSplitters/**/*.class'
include 'pro/litvinovg/**/*.class'
2017-08-29 13:59:07 +03:00
include 'org/openoffice/da/comp/wl2common/**/*.class'
include 'org/openoffice/da/comp/writer2xhtml/**/*.class'
include 'org/openoffice/da/comp/wl2common/**/*.properties'
2020-07-27 16:41:19 +02:00
include 'w2phtml/api/**/*.class'
include 'w2phtml/base/**/*.class'
include 'w2phtml/epub/**/*.class'
include 'w2phtml/office/**/*.class'
include 'w2phtml/util/**/*.class'
include 'w2phtml/xhtml/**/*.class'
include 'w2phtml/xhtml/**/*.xml'
include 'w2phtml/xmerge/**/*.class'
from 'src/main/java'
include 'w2phtml/xhtml/**/*.properties'
include 'w2phtml/xhtml/**/**/*.properties'
from sourceSets.main.output
include 'org/**/*'
2020-07-27 21:32:19 +02:00
include 'net/**/*'
2020-07-27 16:41:19 +02:00
}
task xhtml2(type: Jar) {
manifest {
attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion,
2020-07-27 16:54:46 +02:00
"RegistrationClassName" : "pro.litvinovg.w2phtml.RegistrationHandler",
2020-07-27 16:41:19 +02:00
"Class-Path" : "jasp.jar parser.jar")
}
baseName = "writer2phtml"
from {
2020-07-27 20:11:29 +02:00
configurations.bundledLibs.collect {
2020-07-27 16:41:19 +02:00
it.isDirectory() ? it : zipTree(it)
2020-07-27 20:11:29 +02:00
}
2020-07-27 16:41:19 +02:00
}
from sourceSets.main.output
exclude '**/*Test.class'
exclude '**/AllTests.class'
exclude '**/*.java'
2020-08-03 12:59:38 +02:00
include 'etc/*'
include 'com/*'
include 'com/**/*'
2020-07-27 16:54:46 +02:00
include 'w2phtml/pageSplitters/**/*.class'
include 'pro/litvinovg/**/*.class'
2020-07-27 21:32:19 +02:00
include 'pro/litvinovg/**/*.png'
2020-07-27 16:58:57 +02:00
include 'pro/litvinovg/**/*.classes'
2020-07-27 16:54:46 +02:00
include 'w2phtml/api/**/*.class'
2020-07-31 19:14:13 +02:00
include 'w2phtml/*.class'
include 'w2phtml/*.properties'
2020-07-27 16:54:46 +02:00
include 'w2phtml/base/**/*.class'
2020-07-27 21:32:19 +02:00
include 'w2phtml/rdf/**/*.class'
2020-07-27 16:54:46 +02:00
include 'w2phtml/epub/**/*.class'
include 'w2phtml/office/**/*.class'
include 'w2phtml/util/**/*.class'
include 'w2phtml/xhtml/**/*.class'
include 'w2phtml/xhtml/**/*.xml'
include 'w2phtml/xmerge/**/*.class'
from 'src/main/java'
include 'w2phtml/xhtml/**/*.properties'
include 'w2phtml/xhtml/**/**/*.properties'
from sourceSets.main.output
include 'org/**/*'
2020-07-27 21:32:19 +02:00
include 'net/**/*'
2020-08-17 17:42:21 +02:00
include 'logback.xml'
include 'ch/*'
include '**/*.properties'
2017-08-29 13:59:07 +03:00
}
2020-07-27 16:41:19 +02:00
2017-08-29 13:59:07 +03:00
task oxt(type: Zip){
dependsOn = [ 'xhtml', 'setVersion' ]
2020-02-10 13:04:36 +01:00
archiveName 'w2phtml.oxt'
2020-03-11 08:29:06 +01:00
from 'src/main/oxt'
2017-08-29 13:59:07 +03:00
include '*'
include '**'
from 'build/libs/writer2xhtml-filter.jar'
include '*'
from 'src/main/idl/writer2xhtml'
include 'writer2xhtml.rdb'
2020-07-27 16:41:19 +02:00
from 'releasenotes.txt'
include '*'
2017-08-29 13:59:07 +03:00
}
2020-07-27 16:41:19 +02:00
task oxtNew(type: Zip){
dependsOn = [ 'xhtml2', 'setVersion' ]
archiveName 'w2phtml-new.oxt'
from 'src/main/oxt2'
include '*'
include '**'
exclude '.gradle'
from 'build/libs/writer2phtml.jar'
include '*'
2020-07-27 20:11:29 +02:00
from 'idl/writer2paginatedhtml.rdb'
2020-07-27 16:41:19 +02:00
from 'releasenotes.txt'
include '*'
}
task setVersion(){
ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask')
2020-03-11 08:29:06 +01:00
ant.xmltask(source: 'src/main/oxt/description.xml', dest: 'src/main/oxt/description.xml', report:'true') {
replace(path: "//*[local-name()='version']/@value", withText: "${releaseVersion}")
}
}