- Timestamp:
- 12/08/11 10:21:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaCommons/build.xml
r276 r278 6 6 <property name="dist.location" value="dist" /> 7 7 <property name="javadoc.location" value="javadoc" /> 8 <property name="downloads.location" value="downloads" /> 8 9 <property name="debuglevel" value="source,lines,vars" /> 9 10 <property name="target" value="1.6" /> … … 129 130 <!-- Initialization Targets --> 130 131 <target name="init.build"> 131 <mkdir dir=" bin" />132 <mkdir dir="${build.location}" /> 132 133 </target> 133 134 <target name="init.dist"> … … 136 137 <mkdir dir="${dist.location.jfcmonitor}" /> 137 138 </target> 139 <target name="init.downloads"> 140 <mkdir dir="${downloads.location}"/> 141 </target> 138 142 <target depends="init.build" name="init.eventbenchconsole"> 139 143 <mkdir dir="${build.location.eventbenchconsole}" /> … … 159 163 <delete dir="${javadoc.location}" /> 160 164 </target> 161 <target depends="clean.build,clean.dist,clean.javadoc " name="clean.all" />165 <target depends="clean.build,clean.dist,clean.javadoc,clean.junit" name="clean.all" /> 162 166 163 167 <!-- Build Targets --> … … 260 264 </copy> 261 265 </target> 266 267 268 <target depends="init.downloads,dist" name="createDownloads"> 269 <zip destfile="${downloads.location}/eventbench-complete.zip"> 270 <fileset dir="${dist.location}" /> 271 </zip> 272 <zip destfile="${downloads.location}/eventbench-console.zip"> 273 <fileset dir="${dist.location.main}" /> 274 </zip> 275 <zip destfile="${downloads.location}/eventbench-jfcmonitor.zip"> 276 <fileset dir="${dist.location.jfcmonitor}" /> 277 </zip> 278 <zip destfile="${downloads.location}/eventbench-javadoc.zip"> 279 <fileset dir="${dist.location.javadoc}" /> 280 </zip> 281 </target> 262 282 263 283 <!-- Javadoc Targets --> … … 311 331 </copy> 312 332 </target> 333 334 <target name="clean.junit"> 335 <delete dir="${test.location.results}" /> 336 <delete dir="${test.location.data}" /> 337 <delete dir="${test.location.output}" /> 338 </target> 313 339 314 340 <target depends="init.eventbenchcore-test" name="build.eventbenchcore-test"> … … 349 375 350 376 <target depends="junit.eventbenchcore,junit.javahelperlib" name="junit" /> 351 352 <target depends="dist,junit" name="distAndTest" />353 377 </project>
Note: See TracChangeset
for help on using the changeset viewer.