New src/macosx/bundle/build.xml (original) (raw)

1 2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <javac destDir="${ant.project.name}/${folder.classes}" 21 includejavaruntime="true" 22 includeantruntime="true" 23 deprecation="true" 24 debug="true" 25 encoding="UTF-8" 26 failonerror="true"> 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" 98 classpath="${ant.project.name}/${folder.bin}/${ant.project.name}-${version}.jar"/> 99 100 <bundleapp outputdirectory="." 101 name="HelloWorld" 102 displayname="Hello World Test" 103 identifier="com.oracle.appbundler.Test" 104 shortversion="1.0" 105 runtime="${env.JAVA_HOME}/../.." 106 mainclassname="Test"> 107 108 109 110 111 112 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" 113 classpath="${ant.project.name}/${folder.bin}/${ant.project.name}-${version}.jar"/> 114 115 <bundleapp outputdirectory="." 116 name="SwingSet2" 117 displayname="SwingSet 2" 118 identifier="com.oracle.javax.swing.SwingSet2" 119 shortversion="1.0" 120 runtime="${env.JAVA_HOME}/../.." 121 mainclassname="SwingSet2"> 122 123 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147