You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2016/01/07 13:20:58 UTC

[2/3] incubator-freemarker git commit: Build: The top folder inside the tar should include the version number in its name.

Build: The top folder inside the tar should include the version number in its name.


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

Branch: refs/heads/2.3
Commit: da6180e5e49130610ea4ea6d5c560dede78addfc
Parents: cec5ed0
Author: ddekany <dd...@apache.org>
Authored: Thu Jan 7 13:03:58 2016 +0100
Committer: ddekany <dd...@apache.org>
Committed: Thu Jan 7 13:03:58 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/da6180e5/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 985c14e..b072cc5 100644
--- a/build.xml
+++ b/build.xml
@@ -91,7 +91,7 @@
   <filter token="version" value="${version}" />
   
   <property name="dist.dir" value="build/dist" />
-  <property name="dist.archiveBaseName" value="apache-freemarker-gae" />
+  <property name="dist.archiveBaseName" value="apache-freemarker-gae-${version}" />
   <property name="dist.bin.dir" value="${dist.dir}/bin/${dist.archiveBaseName}" />
   <property name="dist.src.dir" value="${dist.dir}/src/${dist.archiveBaseName}-src" />
   
@@ -654,7 +654,7 @@
     
     <u:packageAndSignDist
         srcDir="${dist.bin.dir}/.."
-        archiveNameWithoutExt="${dist.archiveBaseName}-${version}-bin"
+        archiveNameWithoutExt="${dist.archiveBaseName}-bin"
     />
 
     <!-- ..................................... -->
@@ -699,7 +699,7 @@
     
     <u:packageAndSignDist
         srcDir="${dist.src.dir}/.."
-        archiveNameWithoutExt="${dist.archiveBaseName}-${version}-src"
+        archiveNameWithoutExt="${dist.archiveBaseName}-src"
     />
   </target>