source: release-kits/lirk3/ant-scripts/create-components.xml@ 19980

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

use the generalised targets to create components

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-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 </target>
20
21 <target name="compress-components">
22 <antcall target="compress-component"><param name="component" value="core"/></antcall>
23 <antcall target="compress-component"><param name="component" value="ant"/></antcall>
24 <antcall target="compress-component"><param name="component" value="tomcat"/></antcall>
25 <antcall target="compress-component"><param name="component" value="imagemagick"/></antcall>
26 </target>
27
28</project>
Note: See TracBrowser for help on using the repository browser.