blob: 9de94845e907d5a4323ac28e1f343730f1ae61a8 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project name="index" default="index" basedir=".">
<!--
OSGi Indexer. See
http://bundles.osgi.org/bindex.php
-->
<target name="init">
<property file="env.properties" />
</target>
<target name="index" depends="init">
<echo message="Indexing ${localUpdateSitePath}/plugins/*.jar" />
<java jar="bindex.jar"
fork="true"
failonerror="false">
<arg value="-t" />
<arg value="http://download.eclipse.org/callisto/releases/plugins/%f " />
<arg value="-q" />
<arg value="${localUpdateSitePath}/plugins/*.jar" />
</java>
</target>
</project>