blob: 638c7dcee1ae3e0281b1556403da5d64ca39fbd1 [file] [log] [blame]
<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.common"/>
<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}/src" >
<fileset dir="${plugindir}/src">
<include name="**/*.properties"/>
</fileset>
</copy>
</target>
</project>