blob: d55b11143a3757df265348f2c9f0561d83fbffc6 [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_williams0e06b492007-02-10 03:05:34 +00009 <ant antfile="callisto-features-wtp.xml" />
10 <ant antfile="callisto-features-jsf.xml" />
11 <ant antfile="callisto-features-jpa.xml" />
david_williams8a62f0d2006-06-28 05:07:27 +000012
13 <!-- make sure all can "read" (important for quicker http access, esp. when Eclipse.org overloaded) -->
14 <chmod verbose="true" perm="o+rx" type="both">
15 <fileset dir="${localUpdateSitePath}" />
16 </chmod>
17
18 <!-- needs work .. indexer doesn't work well from this ant script (needs paths fixed up)
19 <ant antfile="indexer.xml">
20 <property name="pluginJarPath"
21 location="${localUpdateSitePath}" />
22 </ant>
23 -->
24 </target>
25
26</project>
27