blob: 5c9b86bc9cbaa74894e87d028af375eb8012e369 [file] [log] [blame]
<project name="samples" default="all">
<property name="mainDir" value="../.."/>
<path id="axis.classpath">
<fileset dir="../../lib">
<include name="*.jar"/>
</fileset>
<pathelement location="./amazonQS.jar"/>
</path>
<target name="cq">
<java classname="sample.amazon.amazonSimpleQueueService.RunGUICQ"
classpathref="axis.classpath" fork="true">
<jvmarg value="-Daxis2.repo=${mainDir}"/>
</java>
</target>
<target name="rq">
<java classname="sample.amazon.amazonSimpleQueueService.RunGUIRQ"
classpathref="axis.classpath" fork="true">
<jvmarg value="-Daxis2.repo=${mainDir}"/>
</java>
</target>
<target name="all" depends="cq,rq"/>
</project>