forked from akjava/GWT-Hangouts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
38 lines (32 loc) · 1.52 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
<?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">
<javac destdir="tmp" srcdir="src">
<classpath path="lib\gwt-gadgets_hangout_custom_by_akjava.com.jar;C:\eclipse\plugins\com.google.gwt.eclipse.sdkbundle_2.4.0.relr37v201110112027\gwt-2.4.0\gwt-user.jar;C:\eclipse\plugins\com.google.gwt.eclipse.sdkbundle_2.4.0.relr37v201110112027\gwt-2.4.0\gwt-dev.jar">
</classpath>
</javac>
<copydir dest="tmp" src="src"></copydir>
<jar destfile="built/akjava_gwt_hangouts.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>