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
This commit is contained in:
parent
a4c1f0115d
commit
391922f2a7
21
build.xml
Normal file
21
build.xml
Normal file
@ -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>
|
Loading…
Reference in New Issue
Block a user