2002/04/27 03:40:02
[org.ibex.core.git] / src / org / xwt / plat / Java2.xml.orig
diff --git a/src/org/xwt/plat/Java2.xml.orig b/src/org/xwt/plat/Java2.xml.orig
new file mode 100644 (file)
index 0000000..2af97c6
--- /dev/null
@@ -0,0 +1,33 @@
+<!-- Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL] -->
+
+<project name="Java2" default="run" basedir=".">
+
+    <target name="build"/>
+
+    <target name="run">
+        <java classname='org.xwt.Main'>
+            <classpath>
+                <pathelement path='bin/'/>
+                <fileset dir='lib'>
+                    <include name='**/*.jar'/>
+                </fileset>
+            </classpath>
+            <arg line='src org.xwt.demo.main'/>
+        </java>
+    </target>
+
+    <target name="dist">
+        <jar update="true" jarfile='www/html/dist/xwt.jar' basedir='bin/' includes=''>
+            <patternset>
+                <include name='org/xwt/*.class'/>
+                <include name='org/xwt/util/*.class'/>
+                <include name='org/mozilla/**/*.class'/>
+                <include name='org/bouncycastle/**/*.class'/>
+                <include name='jazz/**/*.class'/>
+                <include name='org/xwt/plat/AWT*.class'/>
+                <include name='org/xwt/plat/Java2*.class'/>
+                <include name='org/xwt/plat/MacOSX*.class'/>
+            </patternset>
+        </jar>
+    </target>
+