source: release-kits/wirk3/ant-scripts/create-components.xml@ 19981

Last change on this file since 19981 was 19981, checked in by oranfry, 15 years ago

use the genralised targets to create components

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-create-components" default="create-components">
3
4 <import file="${basedir}/distributions/web/resources/xml/components.xml"/>
5 <import file="${rk.home}/greenstone3/ant-scripts/rk3-targets.xml"/>
6
7 <!-- create components from the distributions folder -->
8
9 <target name="create-components">
10 <antcall target="prepare-components" />
11 <antcall target="compress-components" />
12 </target>
13
14 <target name="prepare-components">
15 <antcall target="prepare-component"><param name="component" value="core"/></antcall>
16 <antcall target="prepare-component"><param name="component" value="ant"/></antcall>
17 <antcall target="prepare-component"><param name="component" value="tomcat"/></antcall>
18 <antcall target="prepare-component"><param name="component" value="imagemagick"/></antcall>
19 <antcall target="prepare-component"><param name="component" value="ghostscript"/></antcall>
20 </target>
21
22 <target name="compress-components">
23 <antcall target="compress-component"><param name="component" value="core"/></antcall>
24 <antcall target="compress-component"><param name="component" value="ant"/></antcall>
25 <antcall target="compress-component"><param name="component" value="tomcat"/></antcall>
26 <antcall target="compress-component"><param name="component" value="imagemagick"/></antcall>
27 <antcall target="compress-component"><param name="component" value="ghostscript"/></antcall>
28 </target>
29
30</project>
Note: See TracBrowser for help on using the repository browser.