2004/01/28 09:56:33
[org.ibex.core.git] / src / org / xwt / plat / Java2.xml.orig
1 <!-- Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL] -->
2
3 <project name="Java2" default="run" basedir=".">
4
5     <target name="build"/>
6
7     <target name="run">
8         <java classname='org.xwt.Main'>
9             <classpath>
10                 <pathelement path='bin/'/>
11                 <fileset dir='lib'>
12                     <include name='**/*.jar'/>
13                 </fileset>
14             </classpath>
15             <arg line='src org.xwt.demo.main'/>
16         </java>
17     </target>
18
19     <target name="dist">
20         <jar update="true" jarfile='www/html/dist/xwt.jar' basedir='bin/' includes=''>
21             <patternset>
22                 <include name='org/xwt/*.class'/>
23                 <include name='org/xwt/util/*.class'/>
24                 <include name='org/mozilla/**/*.class'/>
25                 <include name='org/bouncycastle/**/*.class'/>
26                 <include name='jazz/**/*.class'/>
27                 <include name='org/xwt/plat/AWT*.class'/>
28                 <include name='org/xwt/plat/Java2*.class'/>
29                 <include name='org/xwt/plat/MacOSX*.class'/>
30             </patternset>
31         </jar>
32     </target>
33