Skip to main content
summaryrefslogtreecommitdiffstats
blob: 483a3534ba54ed96e7b12a5121fd11c052991f1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<project name="Custom Targets MyTest" default="noDefault">

	<target name="noDefault" />

	<!-- This goal of this target is to get the packaging map files of the things you care for 
	       The files must be fetched into the downloadDirectory folder -->
	<target name="getMapFiles" unless="localMaps">
	  <!-- if packagerMapURL is not set
		<get src="${packagerMapURL}" dest="${downloadDirectory}/initial.map" usetimestamp="true" />
	  -->
	</target>

	<target name="init">
		<property name="archiveNamePrefix" value="${buildId}" />
	</target>

	<!-- This file is a stub. It will be completed by EPP at runtime. -->

Back to the top