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 | 0e06b49 | 2007-02-10 03:05:34 +0000 | [diff] [blame^] | 9 | <ant antfile="callisto-features-wtp.xml" /> |
| 10 | <ant antfile="callisto-features-jsf.xml" /> |
| 11 | <ant antfile="callisto-features-jpa.xml" /> |
david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame] | 12 | |
| 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 | |