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
RevLine 
[17366]1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-create-components" default="create-components">
3
[19981]4 <import file="${basedir}/distributions/web/resources/xml/components.xml"/>
5 <import file="${rk.home}/greenstone3/ant-scripts/rk3-targets.xml"/>
6
[17898]7 <!-- create components from the distributions folder -->
[17471]8
[17366]9 <target name="create-components">
[17471]10 <antcall target="prepare-components" />
11 <antcall target="compress-components" />
[17366]12 </target>
[17652]13
[17471]14 <target name="prepare-components">
[19981]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>
[17814]21
[17471]22 <target name="compress-components">
[19981]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>
[17427]29
[17366]30</project>
Note: See TracBrowser for help on using the repository browser.