Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/prepareforpii.xml')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/prepareforpii.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/prepareforpii.xml b/plugins/org.eclipse.jst.j2ee.core/prepareforpii.xml
deleted file mode 100644
index 032895999..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/prepareforpii.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<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.etools.j2ee.core"/>
- <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}/mofj2ee" >
- <fileset dir="${plugindir}/mofj2ee">
- <include name="**/*.properties"/>
- </fileset>
- </copy>
- <copy todir = "${outputDir}/commonArchive" >
- <fileset dir="${plugindir}/commonArchive">
- <include name="**/*.properties"/>
- </fileset>
- </copy>
- <copy todir = "${outputDir}/j2ee-validation" >
- <fileset dir="${plugindir}/j2ee-validation">
- <include name="**/*.properties"/>
- </fileset>
- </copy>
-
- <copy file="${plugindir}/plugin.properties" todir="${outputDir}"/>
-
- </target>
-</project>

Back to the top