You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dj...@apache.org on 2016/03/07 19:26:53 UTC

[43/50] incubator-quarks git commit: Add property for version number

Add property for version number


Project: http://git-wip-us.apache.org/repos/asf/incubator-quarks/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quarks/commit/a596a913
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quarks/tree/a596a913
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quarks/diff/a596a913

Branch: refs/heads/master
Commit: a596a9133ac3edfbf23f712c26bfd4cbb484edc1
Parents: 8fa7d75
Author: Daniel J. Debrunner <de...@us.ibm.com>
Authored: Mon Mar 7 07:22:23 2016 -0800
Committer: Daniel J. Debrunner <de...@us.ibm.com>
Committed: Mon Mar 7 07:22:23 2016 -0800

----------------------------------------------------------------------
 build.xml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/a596a913/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index fe29935..55e0037 100644
--- a/build.xml
+++ b/build.xml
@@ -7,6 +7,8 @@
 	
   <property name="release.base" location="release-${ant.project.name}"/>
 
+  <property name="quarks.version" value="0.4.0"/>
+
   <property name="report.dir" location="reports"/>
   <property name="target.dir" location="target"/>
   <property name="javadoc.dir" location="${target.dir}/docs/javadoc"/>
@@ -262,7 +264,7 @@
       author="true"
       version="true"
       use="true"
-      windowtitle="Quarks v0.3"
+      windowtitle="Quarks v${quarks.version}"
       additionalparam="-Xdoclint:none"
       Overview="quarks_overview.html"
       failonwarning="true"
@@ -286,7 +288,7 @@
         </fileset>
       </classpath>
 
-       <doctitle>Quarks v0.3</doctitle>
+       <doctitle>Quarks v${quarks.version}</doctitle>
        <footer><![CDATA[<a href="http://quarks-edge.github.io">quarks-edge community @ github.com</a>]]></footer>
        <bottom>Copyright IBM 2015,2016 - ${commithash}-${DSTAMP}-${TSTAMP}</bottom>
        <group title="Quarks API" packages="quarks.execution,quarks.function,quarks.topology,quarks.topology.*,quarks.execution.*"/>
@@ -308,7 +310,7 @@
       <ant dir="platform/android" target="all" useNativeBasedir="true"/>
 
       <mkdir dir="${release.dir}" />
-      <property name="releasefilename" value="${release.dir}/quarks-v0.3.0-${DSTAMP}-${TSTAMP}.tgz"/>
+      <property name="releasefilename" value="${release.dir}/quarks-v${quarks.version}-${DSTAMP}-${TSTAMP}.tgz"/>
       <tar compression="gzip" longfile="gnu" destfile="${releasefilename}">
         <tarfileset dir="${target.dir}" prefix="quarks"
          excludes="**/*.sh"/>