Saved stage

This commit is contained in:
Georgy Litvinov 2020-07-27 20:11:29 +02:00
parent 709aa74880
commit 2a95bff6fc
11 changed files with 309 additions and 14 deletions

View file

@ -33,6 +33,7 @@ dependencies{
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
bundledLibs group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30'
bundledLibs group: 'com.opencsv', name: 'opencsv', version: '5.1'
bundledLibs group: 'com.miglayout', name: 'miglayout-swing', version: '5.2'
bundledLibs files('idl')
configurations.compile.extendsFrom(configurations.bundledLibs)
}
@ -95,9 +96,9 @@ task xhtml2(type: Jar) {
}
baseName = "writer2phtml"
from {
configurations.bundledLibs.collect {
configurations.bundledLibs.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}
from sourceSets.main.output
exclude '**/*Test.class'
@ -148,8 +149,7 @@ task oxtNew(type: Zip){
exclude '.gradle'
from 'build/libs/writer2phtml.jar'
include '*'
from 'src/main/idl/writer2xhtml'
include 'writer2xhtml.rdb'
from 'idl/writer2paginatedhtml.rdb'
from 'releasenotes.txt'
include '*'
}