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 name="Product Build allElements Delegator">
	<property name="archiveNamePrefix" value="${buildId}"/>
	
 	<!-- ===================================================================== -->
 	<!-- Run a given ${target} on all elements being built                     -->
 	<!-- Add on 
 	<!-- ===================================================================== -->
 	<target name="allElementsDelegator">
 		<ant antfile="${genericTargets}" target="${target}">
	 		<property name="type" value="feature" />
	 		<property name="id" value="org.eclipse.pde.build.container.feature" />
 		</ant>
 	</target>
 
 	<!-- ===================================================================== -->
 	<!-- Targets to assemble the built elements for particular configurations  -->
 	<!-- These generally call the generated assemble scripts (named in         -->
 	<!-- ${assembleScriptName}) but may also add pre and post processing       -->
 	<!-- Add one target for each root element and each configuration           -->
 	<!-- ===================================================================== -->
 	<target name="assemble.org.eclipse.pde.build.container.feature">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
			<property name="archiveName" value="${archiveNamePrefix}.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.win32.win32.x86">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-win32.win32.x86.zip"/>
		</ant>

 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.ppc">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.ppc.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.x86">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.x86_64">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86_64.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.linux.motif.x86">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-linux.motif.x86.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.solaris.motif.sparc">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-solaris.motif.sparc.zip"/>
		</ant>
 	</target>
 		
 	<target name="assemble.org.eclipse.pde.build.container.feature.solaris.gtk.sparc">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-solaris.gtk.sparc.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.aix.motif.ppc">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-aix.motif.ppc.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.hpux.motif.PA_RISC">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-hpux.motif.PA_RISC.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.macosx.carbon.ppc">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.ppc.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.macosx.carbon.x86">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.x86.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.org.eclipse.pde.build.container.feature.group.group.group">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-group.zip"/>
		</ant>
 	</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.