forked from clwillingham/java-socket.io.client
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·46 lines (37 loc) · 1.43 KB
/
build.xml
File metadata and controls
executable file
·46 lines (37 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
11 May 2012 11:01:19
java-socket.io.client
(fork of) simple java socket.io client.
cmg
====================================================================== -->
<project name="java-socket.io.client" default="jar">
<description>
(fork of) simple java socket.io client.
</description>
<path id="buildpath">
<pathelement location="lib/WebSocket.jar"/>
<pathelement location="lib/json.jar"/>
</path>
<target name="compile">
<mkdir dir="build/classes" />
<mkdir dir="build/examples" />
<javac includeantruntime="false" debug="on" srcdir="src" destdir="build/classes" classpathref="buildpath" />
<javac includeantruntime="false" srcdir="example" classpath="build/classes" destdir="build/examples" classpathref="buildpath" />
</target>
<target name="jar" depends="compile">
<jar destfile="dist/socketio.jar"
basedir="build/classes"
includes="**/*.class"
/>
</target>
<target name="doc">
<delete dir="doc" />
<javadoc sourcepath="src"
destdir="doc"
/>
</target>
<target name="clean">
<delete dir="build"/>
</target>
</project>