aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-10 17:49:19 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-10 17:49:19 +0000
commit391922f2a75925b886674dfc7f453ae8eca7de49 (patch)
tree8b8928568862f9bc66bcb6d86f5f4df45cb2fb78 /build.xml
parenta4c1f0115d570e04e249479dc9369a057f4ff448 (diff)
downloadsemanticscuttle-391922f2a75925b886674dfc7f453ae8eca7de49.tar.gz
semanticscuttle-391922f2a75925b886674dfc7f453ae8eca7de49.tar.bz2
untested phing build file to create release zip
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@532 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..1623b03
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<project name="SemanticScuttle" default="dist" basedir=".">
+ <!--
+ SemanticScuttle phing build file.
+ This script should provide a one-stop tool for all administrative
+ tasks around SemanticScuttle, like creating a release version,
+ tagging a release, running unit tests etc.
+ -->
+ <target name="dist"><!-- depends="build">-->
+ <echo msg="Creating distribution zip for SemanticScuttle {$version}"/>
+ <zip destfile="SemanticScuttle-{$version}.zip">
+ <fileset dir=".">
+ <include name="**"/>
+ <exclude name="build.xml"/>
+ <exclude name="cache"/>
+ <exclude name="data/config.php"/>
+ </fileset>
+ </zip>
+ </target>
+
+</project> \ No newline at end of file