forked from TooTallNate/Java-WebSocket
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
Latest commit
22 lines (18 loc) · 489 Bytes
/
Copy pathbuild.xml
File metadata and controls
22 lines (18 loc) · 489 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<projectdefault="jar">
<targetname="compile">
<javacincludeantruntime="false"srcdir="src" />
<javacincludeantruntime="false"srcdir="example"classpath="src" />
</target>
<targetname="jar"depends="compile">
<jardestfile="dist/WebSocket.jar"
basedir="src"
includes="**/*.class"
/>
</target>
<targetname="doc">
<deletedir="doc" />
<javadocsourcepath="src"
destdir="doc"
/>
</target>
</project>