blob: 79f11ddf0ea597446db06c26e2af8278229abde4 [file] [log] [blame]
david_williams8a62f0d2006-06-28 05:07:27 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project name="updatesite" default="all" basedir=".">
3
4 <target name="init">
5 <ant antfile="init.xml"/>
6 </target>
7
8 <target name="all" depends="init">
david_williams190c71e2007-05-05 06:47:41 +00009 <ant antfile="callisto-features-jem.xml" />
david_williams0e06b492007-02-10 03:05:34 +000010 <ant antfile="callisto-features-wtp.xml" />
11 <ant antfile="callisto-features-jsf.xml" />
12 <ant antfile="callisto-features-jpa.xml" />
david_williams8a62f0d2006-06-28 05:07:27 +000013
14 <!-- make sure all can "read" (important for quicker http access, esp. when Eclipse.org overloaded) -->
15 <chmod verbose="true" perm="o+rx" type="both">
16 <fileset dir="${localUpdateSitePath}" />
17 </chmod>
18
19 <!-- needs work .. indexer doesn't work well from this ant script (needs paths fixed up)
20 <ant antfile="indexer.xml">
21 <property name="pluginJarPath"
22 location="${localUpdateSitePath}" />
23 </ant>
david_williams190c71e2007-05-05 06:47:41 +000024 -->
david_williams8a62f0d2006-06-28 05:07:27 +000025 </target>
26
27</project>
28