build improvements
This commit is contained in:
parent
1f004f76ee
commit
508475586a
3 changed files with 22 additions and 18 deletions
27
build.gradle
27
build.gradle
|
@ -1,14 +1,14 @@
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
jar.archiveName = "${jar.baseName}.${jar.extension}"
|
||||||
repositories{
|
repositories{
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
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"
|
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', project.version )
|
||||||
propertyDestFile.withWriter { properties.store(it, null) }
|
propertyDestFile.withWriter { properties.store(it, null) }
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
|
@ -35,7 +35,7 @@ dependencies{
|
||||||
jar {
|
jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes("Implementation-Title": rootProject.name,
|
attributes("Implementation-Title": rootProject.name,
|
||||||
"Implementation-Version": releaseVersion,
|
"Implementation-Version": project.version,
|
||||||
"Main-Class" : "w2phtml.Application",
|
"Main-Class" : "w2phtml.Application",
|
||||||
"Class-Path" : "jasp.jar parser.jar")
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ jar {
|
||||||
task xhtml(type: Jar) {
|
task xhtml(type: Jar) {
|
||||||
manifest {
|
manifest {
|
||||||
attributes("Implementation-Title": rootProject.name,
|
attributes("Implementation-Title": rootProject.name,
|
||||||
"Implementation-Version": releaseVersion,
|
"Implementation-Version": project.version,
|
||||||
"RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration",
|
"RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration",
|
||||||
"Class-Path" : "jasp.jar parser.jar")
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,7 @@ task xhtml(type: Jar) {
|
||||||
task xhtml2(type: Jar) {
|
task xhtml2(type: Jar) {
|
||||||
manifest {
|
manifest {
|
||||||
attributes("Implementation-Title": rootProject.name,
|
attributes("Implementation-Title": rootProject.name,
|
||||||
"Implementation-Version": releaseVersion,
|
"Implementation-Version": project.version,
|
||||||
"RegistrationClassName" : "pro.litvinovg.w2phtml.RegistrationHandler",
|
"RegistrationClassName" : "pro.litvinovg.w2phtml.RegistrationHandler",
|
||||||
"Class-Path" : "jasp.jar parser.jar")
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ task xhtml2(type: Jar) {
|
||||||
it.isDirectory() ? it : zipTree(it)
|
it.isDirectory() ? it : zipTree(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
from sourceSets.main.output
|
from (sourceSets.main.output){
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
exclude '**/*.java'
|
exclude '**/*.java'
|
||||||
|
@ -130,16 +130,19 @@ task xhtml2(type: Jar) {
|
||||||
include 'w2phtml/xhtml/**/*.class'
|
include 'w2phtml/xhtml/**/*.class'
|
||||||
include 'w2phtml/xhtml/**/*.xml'
|
include 'w2phtml/xhtml/**/*.xml'
|
||||||
include 'w2phtml/xmerge/**/*.class'
|
include 'w2phtml/xmerge/**/*.class'
|
||||||
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'
|
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') {
|
from('src/main/tmp') {
|
||||||
include 'w2phtml/project.properties'
|
include 'w2phtml/project.properties'
|
||||||
}
|
}
|
||||||
|
@ -163,16 +166,18 @@ task oxt(type: Zip){
|
||||||
task oxtNew(type: Zip){
|
task oxtNew(type: Zip){
|
||||||
dependsOn = [ 'xhtml2', 'setVersion' ]
|
dependsOn = [ 'xhtml2', 'setVersion' ]
|
||||||
archiveName 'w2phtml-new.oxt'
|
archiveName 'w2phtml-new.oxt'
|
||||||
from 'src/main/oxt2'
|
from ('src/main/oxt2'){
|
||||||
include '*'
|
include '*'
|
||||||
include '**'
|
include '**'
|
||||||
exclude '.gradle'
|
exclude '.gradle'
|
||||||
exclude 'description.xml'
|
exclude 'description.xml'
|
||||||
|
}
|
||||||
from('src/main/tmp') {
|
from('src/main/tmp') {
|
||||||
include 'description.xml'
|
include 'description.xml'
|
||||||
}
|
}
|
||||||
from 'build/libs/writer2phtml.jar'
|
from ('build/libs/writer2phtml.jar'){
|
||||||
include '*'
|
include '*'
|
||||||
|
}
|
||||||
from 'idl/writer2paginatedhtml.rdb'
|
from 'idl/writer2paginatedhtml.rdb'
|
||||||
from 'releasenotes.txt'
|
from 'releasenotes.txt'
|
||||||
include '*'
|
include '*'
|
||||||
|
@ -181,6 +186,6 @@ 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/oxt2/description.xml', dest: 'src/main/tmp/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: "${project.version}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
gradle.properties
Normal file
1
gradle.properties
Normal file
|
@ -0,0 +1 @@
|
||||||
|
version=0.9.3
|
|
@ -1,2 +0,0 @@
|
||||||
releaseVersion=testing only
|
|
||||||
releaseDate=now
|
|
Loading…
Add table
Reference in a new issue