removed rss application; instead, added a new target for checking out and zipping any application residing in the cvs [syntax: ant -buildfile file.xml -Dapplication=appName]

This commit is contained in:
Tobi Schäfer 2002-05-10 16:01:14 +00:00
parent fd82482a03
commit 9bcef4ca11

View file

@ -72,7 +72,6 @@
<cvs cvsRoot="${cvs.root}" package="apps/bloggerapi" dest="${build.checkout}"/>
<cvs cvsRoot="${cvs.root}" package="apps/lillebror" dest="${build.checkout}"/>
<cvs cvsRoot="${cvs.root}" package="apps/manage" dest="${build.checkout}"/>
<cvs cvsRoot="${cvs.root}" package="apps/rss" dest="${build.checkout}"/>
</target>
<!-- =================================================================== -->
@ -280,6 +279,17 @@
excludes="**/package.html"/>
</target>
<!-- =================================================================== -->
<!-- Checks out and zips an application defined by -Dapplication=appName -->
<!-- e.g. ant [-buildfile build.xml] -Dapplication=helmaorg -->
<!-- =================================================================== -->
<target name="app-package" depends="init">
<mkdir dir="${build.checkout}"/>
<cvs cvsRoot="${cvs.root}" package="apps/rss" dest="${build.checkout}"/>
<zip zipfile="../${application}.zip" basedir="${build.checkout}/apps/${application}/" includes="**"/>
</target>
<!-- =================================================================== -->
<!-- These are just some tests -->
<!-- =================================================================== -->