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:
parent
fd82482a03
commit
9bcef4ca11
1 changed files with 11 additions and 1 deletions
|
@ -72,7 +72,6 @@
|
||||||
<cvs cvsRoot="${cvs.root}" package="apps/bloggerapi" dest="${build.checkout}"/>
|
<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/lillebror" dest="${build.checkout}"/>
|
||||||
<cvs cvsRoot="${cvs.root}" package="apps/manage" dest="${build.checkout}"/>
|
<cvs cvsRoot="${cvs.root}" package="apps/manage" dest="${build.checkout}"/>
|
||||||
<cvs cvsRoot="${cvs.root}" package="apps/rss" dest="${build.checkout}"/>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
|
@ -280,6 +279,17 @@
|
||||||
excludes="**/package.html"/>
|
excludes="**/package.html"/>
|
||||||
</target>
|
</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 -->
|
<!-- These are just some tests -->
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue