build.xml (e5e61ed1) build.xml (cc697cd0)
1<!--***********************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 28 unchanged lines hidden (view full) ---

37 </path>
38
39 <!-- ===================== HelloWorld example =========================== -->
40 <target name="HelloWorld">
41
42 <mkdir dir="${outdir}/HelloWorld"/>
43
44 <javac srcdir="HelloWorld" destdir="${outdir}/HelloWorld"
1<!--***********************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 28 unchanged lines hidden (view full) ---

37 </path>
38
39 <!-- ===================== HelloWorld example =========================== -->
40 <target name="HelloWorld">
41
42 <mkdir dir="${outdir}/HelloWorld"/>
43
44 <javac srcdir="HelloWorld" destdir="${outdir}/HelloWorld"
45 includes="**/*.java" classpathref="idlclasspath"
45 includes="**/*.java" classpathref="idlclasspath" includeantruntime="false"
46 debug="${debug}" optimize="${optimize}" deprecation="on"/>
47
48 <copy file="HelloWorld/HelloWorld.java" todir="${outdir}/HelloWorld"/>
49 <copy file="HelloWorld/parcel-descriptor.xml" todir="${outdir}/HelloWorld"/>
50
51 <jar jarfile="${outdir}/HelloWorld/HelloWorld.jar"
52 basedir="${outdir}/HelloWorld"
53 includes="**/*.class"

--- 5 unchanged lines hidden (view full) ---

59 </target>
60
61 <!-- ===================== Highlight example ========================== -->
62 <target name="Highlight">
63
64 <mkdir dir="${outdir}/Highlight"/>
65
66 <javac srcdir="Highlight" destdir="${outdir}/Highlight"
46 debug="${debug}" optimize="${optimize}" deprecation="on"/>
47
48 <copy file="HelloWorld/HelloWorld.java" todir="${outdir}/HelloWorld"/>
49 <copy file="HelloWorld/parcel-descriptor.xml" todir="${outdir}/HelloWorld"/>
50
51 <jar jarfile="${outdir}/HelloWorld/HelloWorld.jar"
52 basedir="${outdir}/HelloWorld"
53 includes="**/*.class"

--- 5 unchanged lines hidden (view full) ---

59 </target>
60
61 <!-- ===================== Highlight example ========================== -->
62 <target name="Highlight">
63
64 <mkdir dir="${outdir}/Highlight"/>
65
66 <javac srcdir="Highlight" destdir="${outdir}/Highlight"
67 includes="**/*.java" classpathref="idlclasspath"
67 includes="**/*.java" classpathref="idlclasspath" includeantruntime="false"
68 debug="${debug}" optimize="${optimize}" deprecation="on"/>
69
70 <copy file="Highlight/HighlightText.java" todir="${outdir}/Highlight"/>
71 <copy file="Highlight/parcel-descriptor.xml" todir="${outdir}/Highlight"/>
72
73 <jar jarfile="${outdir}/Highlight/Highlight.jar"
74 basedir="${outdir}/Highlight"
75 includes="**/*.class"

--- 5 unchanged lines hidden (view full) ---

81 </target>
82
83 <!-- ===================== MemoryUsage example ========================== -->
84 <target name="MemoryUsage">
85
86 <mkdir dir="${outdir}/MemoryUsage"/>
87
88 <javac srcdir="MemoryUsage" destdir="${outdir}/MemoryUsage"
68 debug="${debug}" optimize="${optimize}" deprecation="on"/>
69
70 <copy file="Highlight/HighlightText.java" todir="${outdir}/Highlight"/>
71 <copy file="Highlight/parcel-descriptor.xml" todir="${outdir}/Highlight"/>
72
73 <jar jarfile="${outdir}/Highlight/Highlight.jar"
74 basedir="${outdir}/Highlight"
75 includes="**/*.class"

--- 5 unchanged lines hidden (view full) ---

81 </target>
82
83 <!-- ===================== MemoryUsage example ========================== -->
84 <target name="MemoryUsage">
85
86 <mkdir dir="${outdir}/MemoryUsage"/>
87
88 <javac srcdir="MemoryUsage" destdir="${outdir}/MemoryUsage"
89 includes="**/*.java" classpathref="idlclasspath"
89 includes="**/*.java" classpathref="idlclasspath" includeantruntime="false"
90 debug="${debug}" optimize="${optimize}" deprecation="on"/>
91
92 <copy file="MemoryUsage/MemoryUsage.java" todir="${outdir}/MemoryUsage"/>
93 <copy file="MemoryUsage/parcel-descriptor.xml" todir="${outdir}/MemoryUsage"/>
94
95 <jar jarfile="${outdir}/MemoryUsage/MemoryUsage.jar"
96 basedir="${outdir}/MemoryUsage"
97 includes="**/*.class"

--- 38 unchanged lines hidden ---
90 debug="${debug}" optimize="${optimize}" deprecation="on"/>
91
92 <copy file="MemoryUsage/MemoryUsage.java" todir="${outdir}/MemoryUsage"/>
93 <copy file="MemoryUsage/parcel-descriptor.xml" todir="${outdir}/MemoryUsage"/>
94
95 <jar jarfile="${outdir}/MemoryUsage/MemoryUsage.jar"
96 basedir="${outdir}/MemoryUsage"
97 includes="**/*.class"

--- 38 unchanged lines hidden ---