david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame] | 1 | <?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_williams | 190c71e | 2007-05-05 06:47:41 +0000 | [diff] [blame] | 9 | <ant antfile="callisto-features-jem.xml" /> |
david_williams | 0e06b49 | 2007-02-10 03:05:34 +0000 | [diff] [blame] | 10 | <ant antfile="callisto-features-wtp.xml" /> |
| 11 | <ant antfile="callisto-features-jsf.xml" /> |
| 12 | <ant antfile="callisto-features-jpa.xml" /> |
david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame] | 13 | |
| 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_williams | 190c71e | 2007-05-05 06:47:41 +0000 | [diff] [blame] | 24 | --> |
david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame] | 25 | </target> |
| 26 | |
| 27 | </project> |
| 28 | |