forked from zms351/JavaHttpProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
17 lines (17 loc) · 520 Bytes
/
build.xml
File metadata and controls
17 lines (17 loc) · 520 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<project name="movie_spider-compile" default="compile1">
<target name="compile1">
<mkdir dir="./build"/>
<javac srcdir="./src"
destdir="./build"
debug="on"
source="1.7"
target="1.7">
</javac>
<jar destfile="./dist/proxy.jar" basedir="./build">
<manifest>
<attribute name="Main-Class"
value="com.meituan.tools.proxy.DemoStarter"/>
</manifest>
</jar>
</target>
</project>