alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<project default="noDefault">

<target name="noDefault" />

<!-- set the root of the output file name -->
<property name="archiveRoot" value="eclipse-equinox-jmx-server-${buildId}"/>
	
<!-- Target to get the packaging map files for the components of interest
     The files must be fetched into the downloadDirectory folder -->
<target name="getMapFiles" unless="mapsFetched">
	<copy file="${packagingInfo}/../../../../packaging.map" tofile="${downloadDirectory}/packaging.map" />
</target>


<target name="assemble.common.common.common.xml">
	<antcall target="assembler">
		<param name="archiveName" value="${archiveRoot}.zip"/>
	</antcall>
</target>


<target name="assembler">
	<mkdir dir="${equinoxPostingDirectory}/${buildLabel}/checksum" />
	<property name="archiveFullPath" value="${equinoxPostingDirectory}/${buildLabel}/${archiveName}" />
	<ant antfile="${assembleScriptName}" />
	<checksum file="${archiveFullPath}" property="md5"/>
	<checksum file="${archiveFullPath}" property="sha"/>
	<echo message="${md5} *${archiveName}" file="${equinoxPostingDirectory}/${buildLabel}/checksum/${archiveName}.md5"/>
	<echo message="${sha} *${archiveName}" file="${equinoxPostingDirectory}/${buildLabel}/checksum/${archiveName}.sha1"/>
</target>

</project>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.