Skip to main content
summaryrefslogtreecommitdiffstats
blob: 833fffa60d8e78aacbce07ce0cb3c18d991b7947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<project name="PrepareForPII" default="main" basedir=".">
		
	<!-- Setup temp variables -->
	<target name="init">
		<property name="nlsDir" value="d:/NLS/Corona/0526"/>
		<property name="plugin" value="com.ibm.wtp.annotations.controller"/>
		<property name="plugindir" value="d:/workspaceCorona/${plugin}"/>
		<property name="outputDir" value="${nlsDir}/${plugin}"/>
		
	
	</target>

	<!-- Create the destination dir -->
	<target name="nlsDir" depends="init">
		<mkdir dir="${nlsDir}"/>
	</target>
	
	<!-- Create the destination dir -->
	<target name="plugindir" depends="nlsDir">
		<delete dir="${outputDir}"/>
		<mkdir dir="${outputDir}"/>
	</target>

	<!-- Move the files to the correct locations in the workspace. -->
	<target name="main" depends="plugindir">
	
		<messageIdGen folderPath = "${plugindir}" componentId = "E" />
		
		<copy todir = "${outputDir}/property_files" >
			 <fileset dir="${plugindir}/property_files">
           	  <include name="**/*.properties"/>
  			 </fileset>
  		</copy>
  		
	</target>
</project>

Back to the top