Modified build
This commit is contained in:
parent
2a0c02d8f8
commit
f9d424ffd8
4 changed files with 21 additions and 5 deletions
17
build.gradle
17
build.gradle
|
@ -4,11 +4,12 @@ repositories{
|
||||||
}
|
}
|
||||||
def releaseVersion = "0.9.1"
|
def releaseVersion = "0.9.1"
|
||||||
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
||||||
|
def propertyDestFile = file "src/main/tmp/w2phtml/project.properties"
|
||||||
Properties properties = new Properties()
|
Properties properties = new Properties()
|
||||||
propertyFile.withReader { properties.load(it) }
|
propertyFile.withReader { properties.load(it) }
|
||||||
properties.setProperty('releaseDate', new Date().format('HH:mm:ss dd-MM-YYYY'))
|
properties.setProperty('releaseDate', new Date().format('HH:mm:ss dd-MM-YYYY'))
|
||||||
properties.setProperty('releaseVersion', releaseVersion )
|
properties.setProperty('releaseVersion', releaseVersion )
|
||||||
propertyFile.withWriter { properties.store(it, null) }
|
propertyDestFile.withWriter { properties.store(it, null) }
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
configurations{
|
configurations{
|
||||||
|
@ -50,6 +51,10 @@ jar {
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
exclude 'org/openoffice/**/*'
|
exclude 'org/openoffice/**/*'
|
||||||
|
exclude 'w2phtml/project.properties'
|
||||||
|
}
|
||||||
|
from('src/main/tmp') {
|
||||||
|
include 'w2phtml/project.properties'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
task xhtml(type: Jar) {
|
task xhtml(type: Jar) {
|
||||||
|
@ -128,12 +133,16 @@ task xhtml2(type: Jar) {
|
||||||
from 'src/main/java'
|
from 'src/main/java'
|
||||||
include 'w2phtml/xhtml/**/*.properties'
|
include 'w2phtml/xhtml/**/*.properties'
|
||||||
include 'w2phtml/xhtml/**/**/*.properties'
|
include 'w2phtml/xhtml/**/**/*.properties'
|
||||||
|
exclude 'w2phtml/project.properties'
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
include 'org/**/*'
|
include 'org/**/*'
|
||||||
include 'net/**/*'
|
include 'net/**/*'
|
||||||
include 'logback.xml'
|
include 'logback.xml'
|
||||||
include 'ch/**/*'
|
include 'ch/**/*'
|
||||||
include '**/*.properties'
|
include '**/*.properties'
|
||||||
|
from('src/main/tmp') {
|
||||||
|
include 'w2phtml/project.properties'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -158,6 +167,10 @@ task oxtNew(type: Zip){
|
||||||
include '*'
|
include '*'
|
||||||
include '**'
|
include '**'
|
||||||
exclude '.gradle'
|
exclude '.gradle'
|
||||||
|
exclude 'description.xml'
|
||||||
|
from('src/main/tmp') {
|
||||||
|
include 'description.xml'
|
||||||
|
}
|
||||||
from 'build/libs/writer2phtml.jar'
|
from 'build/libs/writer2phtml.jar'
|
||||||
include '*'
|
include '*'
|
||||||
from 'idl/writer2paginatedhtml.rdb'
|
from 'idl/writer2paginatedhtml.rdb'
|
||||||
|
@ -167,7 +180,7 @@ task oxtNew(type: Zip){
|
||||||
|
|
||||||
task setVersion(){
|
task setVersion(){
|
||||||
ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask')
|
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}")
|
replace(path: "//*[local-name()='version']/@value", withText: "${releaseVersion}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#Tue Nov 24 23:04:59 CET 2020
|
#Tue Nov 24 23:04:59 CET 2020
|
||||||
releaseVersion=0.9.1
|
releaseVersion=testing
|
||||||
releaseDate=23\:04\:59 24-11-2020
|
releaseDate=now
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
|
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
|
||||||
|
|
||||||
<version value=""/>
|
<version value="0"/>
|
||||||
<extension-description>
|
<extension-description>
|
||||||
<src lang="en" xlink:href="description/desc_en.txt"/>
|
<src lang="en" xlink:href="description/desc_en.txt"/>
|
||||||
</extension-description>
|
</extension-description>
|
3
src/main/tmp/w2phtml/project.properties
Normal file
3
src/main/tmp/w2phtml/project.properties
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#Tue Nov 24 23:36:58 CET 2020
|
||||||
|
releaseVersion=0.9.1
|
||||||
|
releaseDate=23\:36\:58 24-11-2020
|
Loading…
Add table
Reference in a new issue