-
Notifications
You must be signed in to change notification settings - Fork 105
/
build.xml
35 lines (29 loc) · 1.1 KB
/
build.xml
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
<?xml version="1.0" ?>
<!-- Configuration of the Ant build system to generate a Jar file -->
<project name="HTTP Smuggler" default="dist">
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<target name="clean">
<delete dir="${build}"/>
</target>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init" description="compile the source">
<!-- Compile the Java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}"/>
<copy todir="${build}/resources">
<fileset dir="${src}/resources"/>
</copy>
</target>
<target name="dist" depends="compile" description="generate the distribution">
<!-- Create the distribution directory -->
<mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the burp-httpsmuggler-${DSTAMP}.jar file -->
<jar jarfile="${dist}/lib/burp-httpsmuggler-${DSTAMP}.jar" basedir="${build}" />
</target>
</project>