-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
24 lines (20 loc) · 851 Bytes
/
build.xml
File metadata and controls
24 lines (20 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!-- Name: Tirth Sharad Kelkar-->
<project name="SocketApp" default="build">
<tstamp>
<format property="TODAY" pattern="dd-MM-yyyy" locale="en,UK"/>
</tstamp>
<target name="build" >
<delete includeEmptyDirs="true" quiet="true" >
<fileset dir="./out/test" />
</delete>
<javac srcdir="./src" destdir="./out" optimize="true" includeantruntime="false" debug="true" debuglevel="lines,vars,source" >
<compilerarg value="-Xlint:unchecked" />
<compilerarg value="-Xlint:deprecation" />
<classpath>
<fileset dir="./lib" casesensitive="no" ><include name="**/*.jar"/></fileset>
</classpath>
</javac>
<jar jarfile="./testapp3.jar" basedir="./out"/>
</target>
</project>