Modified build

This commit is contained in:
Georgy Litvinov 2020-11-24 23:40:17 +01:00
parent 2a0c02d8f8
commit f9d424ffd8
4 changed files with 21 additions and 5 deletions

View file

@ -4,11 +4,12 @@ repositories{
}
def releaseVersion = "0.9.1"
def propertyFile = file "src/main/java/w2phtml/project.properties"
def propertyDestFile = file "src/main/tmp/w2phtml/project.properties"
Properties properties = new Properties()
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) }
propertyDestFile.withWriter { properties.store(it, null) }
sourceCompatibility = 1.8
configurations{
@ -50,6 +51,10 @@ jar {
exclude '**/*Test.class'
exclude '**/AllTests.class'
exclude 'org/openoffice/**/*'
exclude 'w2phtml/project.properties'
}
from('src/main/tmp') {
include 'w2phtml/project.properties'
}
}
task xhtml(type: Jar) {
@ -128,12 +133,16 @@ task xhtml2(type: Jar) {
from 'src/main/java'
include 'w2phtml/xhtml/**/*.properties'
include 'w2phtml/xhtml/**/**/*.properties'
exclude 'w2phtml/project.properties'
from sourceSets.main.output
include 'org/**/*'
include 'net/**/*'
include 'logback.xml'
include 'ch/**/*'
include '**/*.properties'
from('src/main/tmp') {
include 'w2phtml/project.properties'
}
}
@ -158,6 +167,10 @@ task oxtNew(type: Zip){
include '*'
include '**'
exclude '.gradle'
exclude 'description.xml'
from('src/main/tmp') {
include 'description.xml'
}
from 'build/libs/writer2phtml.jar'
include '*'
from 'idl/writer2paginatedhtml.rdb'
@ -167,7 +180,7 @@ task oxtNew(type: Zip){
task setVersion(){
ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask')
ant.xmltask(source: 'src/main/description.xml', dest: 'src/main/oxt2/description.xml', report:'true') {
ant.xmltask(source: 'src/main/oxt2/description.xml', dest: 'src/main/tmp/description.xml', report:'true') {
replace(path: "//*[local-name()='version']/@value", withText: "${releaseVersion}")
}
}

View file

@ -1,3 +1,3 @@
#Tue Nov 24 23:04:59 CET 2020
releaseVersion=0.9.1
releaseDate=23\:04\:59 24-11-2020
releaseVersion=testing
releaseDate=now

View file

@ -3,7 +3,7 @@
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
<version value=""/>
<version value="0"/>
<extension-description>
<src lang="en" xlink:href="description/desc_en.txt"/>
</extension-description>

View file

@ -0,0 +1,3 @@
#Tue Nov 24 23:36:58 CET 2020
releaseVersion=0.9.1
releaseDate=23\:36\:58 24-11-2020