root/java-aspect-ratio-container/build.xml

Revision 6, 0.5 KB (checked in by torsten, 3 years ago)

Add a simple example of an "aspect ratio" container.

Line 
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<project basedir="." default="build" name="AspectRatio">
3    <target name="clean">
4        <delete dir="classes"/>
5    </target>
6    <target name="build">
7        <mkdir dir="classes"/>
8        <javac debug="true" destdir="classes">
9            <src path="."/>
10        </javac>
11    </target>
12    <target name="run" depends="build">
13        <java classpath="classes" 
14            classname="net.landschoff.example.AspectRatio" 
15            fork="true" spawn="true" />
16    </target>
17</project>
Note: See TracBrowser for help on using the browser.