forked from akjava/GWTJSZip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
44 lines (38 loc) · 1.55 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
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
2011/12/16 18:26:16
project
description
aki
====================================================================== -->
<project name="project" default="default">
<description>
description
</description>
<!-- =================================
target: default
================================= -->
<target name="default" depends="depends" description="description">
<path id="libs">
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</path>
<javac destdir="tmp" srcdir="src">
<classpath path="C:\eclipse\gwt-2.6.1\gwt-user.jar;C:\eclipse\gwt-2.6.1\gwt-dev.jar">
<path refid="libs"/>
</classpath>
</javac>
<copydir dest="tmp" src="src"></copydir>
<jar destfile="built/akjava_gwtjszip.jar" basedir="tmp"/>
<delete dir="tmp"></delete>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: depends
- - - - - - - - - - - - - - - - - -->
<target name="depends">
<delete dir="tmp"></delete>
<mkdir dir="tmp"/>
<mkdir dir="built"/>
</target>
</project>