diff --git a/build.gradle b/build.gradle index 395cb61..516071c 100644 --- a/build.gradle +++ b/build.gradle @@ -2,12 +2,18 @@ apply plugin: 'java' repositories{ mavenCentral() } +Properties properties = new Properties() +properties.load(project.rootProject.file('project.properties').newDataInputStream()) +def releaseVersion = properties.getProperty('ReleaseVersion') +def getDate() { + return new Date().format('yyyyMMddHHmmss') +} sourceCompatibility = 1.8 jar { manifest { attributes("Implementation-Title": "w2phtml", - "Implementation-Version": "0.5.0", + "Implementation-Version": releaseVersion, "Main-Class" : "w2phtml.Application", "Class-Path" : "jasp.jar parser.jar") } @@ -41,7 +47,7 @@ jar { task xhtml(type: Jar) { manifest { attributes("Implementation-Title": "w2phtml", - "Implementation-Version": "0.5.1", + "Implementation-Version": releaseVersion, "Built-By": "litvinovg", "RegistrationClassName" : "org.openoffice.da.comp.writer2xhtml.W2XRegistration", "Class-Path" : "jasp.jar parser.jar") @@ -71,12 +77,10 @@ task xhtml(type: Jar) { include 'w2phtml/xhtml/**/**/*.properties' from sourceSets.main.output include 'org/**/*' - - - } + task oxt(type: Zip){ - dependsOn xhtml + dependsOn = [ 'xhtml', 'setVersion' ] archiveName 'w2phtml.oxt' from 'src/main/oxt/writer2xhtml' include '*' @@ -86,3 +90,9 @@ task oxt(type: Zip){ from 'src/main/idl/writer2xhtml' include 'writer2xhtml.rdb' } +task setVersion(){ + ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask') + ant.xmltask(source: 'src/main/oxt/writer2xhtml/description.xml', dest: 'src/main/oxt/writer2xhtml/description.xml', report:'true') { + replace(path: "//*[local-name()='version']/@value", withText: "${releaseVersion}") + } +} diff --git a/build.xml b/build.xml deleted file mode 100644 index bf5362f..0000000 --- a/build.xml +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - - - writer2latex - build file - - - Usage: ant <target> - The following targets are supported: - all - Build nearly everything - compile - Compile all file except the tests. - jar - Create the standalone jar file. - oxt - Create extension packages for OOo - distro - Create the distribution packages - javadoc - Create the javadoc documentation in target/javadoc. - clean - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/buildPlugins/xmltask.jar b/buildPlugins/xmltask.jar new file mode 100644 index 0000000..b815813 Binary files /dev/null and b/buildPlugins/xmltask.jar differ diff --git a/project.properties b/project.properties new file mode 100644 index 0000000..5b5f29e --- /dev/null +++ b/project.properties @@ -0,0 +1 @@ +ReleaseVersion=0.5.3 diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..61b9187 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,2 @@ +rootProject.name = 'w2phtml' +