blob: 1623b037939f420693726d5c0012563116daa41c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
|