2017-08-24 23:51:48 +03:00
|
|
|
apply plugin: 'java'
|
|
|
|
repositories{
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2020-03-09 15:39:56 +01:00
|
|
|
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
2020-11-24 23:40:17 +01:00
|
|
|
def propertyDestFile = file "src/main/tmp/w2phtml/project.properties"
|
2020-03-09 14:55:50 +01:00
|
|
|
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'))
|
2020-11-25 12:05:51 +01:00
|
|
|
properties.setProperty('releaseVersion', project.version )
|
2020-11-25 12:16:58 +01:00
|
|
|
mkdir "src/main/tmp/w2phtml"
|
2020-11-24 23:40:17 +01:00
|
|
|
propertyDestFile.withWriter { properties.store(it, null) }
|
2017-08-24 23:51:48 +03:00
|
|
|
|
2021-02-25 00:35:05 +01:00
|
|
|
sourceSets {
|
2021-03-12 23:18:04 +01:00
|
|
|
regressionTests {
|
2021-02-25 00:35:05 +01:00
|
|
|
java {
|
|
|
|
compileClasspath += main.output + test.output
|
|
|
|
runtimeClasspath += main.output + files('src/main/java')
|
|
|
|
java.srcDir file('src/r_tests/java')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
2021-03-12 23:18:04 +01:00
|
|
|
regressionTestsCompile.extendsFrom mainCompile
|
|
|
|
regressionTestsRuntime.extendsFrom mainRuntime
|
|
|
|
regressionTestsRuntime.extendsFrom bundledLibs
|
2017-08-28 17:34:02 +03:00
|
|
|
}
|
2017-08-24 23:51:48 +03:00
|
|
|
dependencies{
|
2021-03-12 23:18:04 +01:00
|
|
|
regressionTestsImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
|
|
|
|
regressionTestsImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.1'
|
|
|
|
regressionTestsImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.1'
|
|
|
|
regressionTestsRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
2021-02-24 16:39:18 +01:00
|
|
|
|
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-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'
|
2020-02-28 18:09:37 +01:00
|
|
|
bundledLibs group: 'com.opencsv', name: 'opencsv', version: '5.1'
|
2020-12-07 19:37:31 +01:00
|
|
|
bundledLibs group: 'org.apache.commons', name: 'commons-imaging', version: '1.0-alpha2'
|
|
|
|
|
2020-02-24 18:31:06 +01:00
|
|
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
2017-08-28 17:34:02 +03:00
|
|
|
}
|
|
|
|
jar {
|
2020-11-25 12:23:58 +01:00
|
|
|
archiveName 'w2phtml.jar'
|
2020-07-30 12:32:24 +02:00
|
|
|
manifest {
|
|
|
|
attributes("Implementation-Title": rootProject.name,
|
2020-11-25 12:05:51 +01:00
|
|
|
"Implementation-Version": project.version,
|
2020-07-30 12:32:24 +02:00
|
|
|
"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/**/*'
|
2020-11-24 23:40:17 +01:00
|
|
|
exclude 'w2phtml/project.properties'
|
|
|
|
}
|
|
|
|
from('src/main/tmp') {
|
|
|
|
include 'w2phtml/project.properties'
|
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,
|
2020-11-25 12:05:51 +01:00
|
|
|
"Implementation-Version": project.version,
|
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
|
2020-11-25 13:54:28 +01:00
|
|
|
exclude '.gradle'
|
2017-08-29 13:59:07 +03:00
|
|
|
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) {
|
2020-11-25 12:23:58 +01:00
|
|
|
archiveName 'writer2phtml.jar'
|
2020-07-27 16:41:19 +02:00
|
|
|
manifest {
|
|
|
|
attributes("Implementation-Title": rootProject.name,
|
2020-11-25 12:05:51 +01:00
|
|
|
"Implementation-Version": project.version,
|
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-11-25 13:54:28 +01:00
|
|
|
exclude 'module-info.class'
|
|
|
|
exclude '.gradle'
|
|
|
|
exclude '**/LICENSE*'
|
|
|
|
exclude '**/DEPENDENCIES'
|
|
|
|
exclude '**/NOTICE*'
|
|
|
|
exclude '**/pom.xml'
|
|
|
|
exclude 'steps.txt'
|
|
|
|
exclude 'META-INF/services'
|
|
|
|
|
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
|
|
|
}
|
2020-11-25 12:05:51 +01:00
|
|
|
from (sourceSets.main.output){
|
2020-07-27 16:41:19 +02:00
|
|
|
exclude '**/*Test.class'
|
|
|
|
exclude '**/AllTests.class'
|
|
|
|
exclude '**/*.java'
|
2020-11-25 13:54:28 +01:00
|
|
|
include '**/*.classes'
|
2020-08-03 12:59:38 +02:00
|
|
|
include 'etc/*'
|
2020-11-25 13:54:28 +01:00
|
|
|
include 'com/**'
|
2020-08-03 12:59:38 +02:00
|
|
|
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: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'
|
|
|
|
include 'org/**/*'
|
2020-07-27 21:32:19 +02:00
|
|
|
include 'net/**/*'
|
2020-08-17 17:42:21 +02:00
|
|
|
include 'logback.xml'
|
2020-08-17 17:47:54 +02:00
|
|
|
include 'ch/**/*'
|
2020-08-17 17:42:21 +02:00
|
|
|
include '**/*.properties'
|
2020-11-25 13:54:28 +01:00
|
|
|
exclude '.gradle'
|
|
|
|
}
|
|
|
|
from ('src/main/java'){
|
|
|
|
exclude '.gradle'
|
|
|
|
include 'w2phtml/xhtml/**/*.properties'
|
|
|
|
include 'w2phtml/xhtml/**/**/*.properties'
|
|
|
|
include 'pro/litvinovg/**/*.classes'
|
|
|
|
include 'logback.xml'
|
|
|
|
include '**/*.png'
|
|
|
|
exclude 'w2phtml/project.properties'
|
2020-11-25 12:05:51 +01:00
|
|
|
}
|
2020-11-24 23:40:17 +01:00
|
|
|
from('src/main/tmp') {
|
2020-11-25 13:54:28 +01:00
|
|
|
exclude '.gradle'
|
2020-11-24 23:40:17 +01:00
|
|
|
include 'w2phtml/project.properties'
|
|
|
|
}
|
2017-08-29 13:59:07 +03:00
|
|
|
}
|
2020-03-09 14:55:50 +01:00
|
|
|
|
2020-07-27 16:41:19 +02:00
|
|
|
|
2017-08-29 13:59:07 +03:00
|
|
|
task oxt(type: Zip){
|
2020-03-09 14:55:50 +01:00
|
|
|
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'
|
2020-11-25 12:05:51 +01:00
|
|
|
from ('src/main/oxt2'){
|
|
|
|
include '*'
|
|
|
|
include '**'
|
|
|
|
exclude '.gradle'
|
|
|
|
exclude 'description.xml'
|
|
|
|
}
|
2020-11-24 23:40:17 +01:00
|
|
|
from('src/main/tmp') {
|
|
|
|
include 'description.xml'
|
|
|
|
}
|
2020-11-25 12:05:51 +01:00
|
|
|
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 '*'
|
|
|
|
}
|
2021-03-12 23:18:04 +01:00
|
|
|
task regressionTests(type: Test) {
|
|
|
|
testClassesDirs = sourceSets.regressionTests.output.classesDirs
|
|
|
|
classpath = sourceSets.regressionTests.runtimeClasspath
|
2021-02-25 00:35:05 +01:00
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events "passed", "skipped", "failed", "standardOut", "standardError"
|
|
|
|
}
|
|
|
|
mustRunAfter jar
|
2021-02-24 16:39:18 +01:00
|
|
|
}
|
|
|
|
|
2020-03-09 14:55:50 +01:00
|
|
|
task setVersion(){
|
|
|
|
ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask')
|
2020-11-24 23:40:17 +01:00
|
|
|
ant.xmltask(source: 'src/main/oxt2/description.xml', dest: 'src/main/tmp/description.xml', report:'true') {
|
2020-11-25 12:05:51 +01:00
|
|
|
replace(path: "//*[local-name()='version']/@value", withText: "${project.version}")
|
2020-03-09 14:55:50 +01:00
|
|
|
}
|
|
|
|
}
|