Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl/grabjars.xml')
-rw-r--r--bundles/org.eclipse.wst.wsdl/grabjars.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.wsdl/grabjars.xml b/bundles/org.eclipse.wst.wsdl/grabjars.xml
new file mode 100644
index 000000000..ec2df912d
--- /dev/null
+++ b/bundles/org.eclipse.wst.wsdl/grabjars.xml
@@ -0,0 +1,33 @@
+<project default="copyJars" basedir=".">
+
+ <property name="pluginName" value="org.eclipse.wst.wsdl"/>
+
+ <target name="copyJars" if="downloadPath">
+ <antcall target="copyJars2"/>
+ </target>
+
+ <target name="copyJars2" if="pluginsPath">
+ <antcall target="copyJars3"/>
+ </target>
+
+ <target name="copyJars3" if="pluginName">
+ <copy todir="${pluginsPath}/${pluginName}/lib" overwrite="true">
+ <fileset dir="${downloadPath}/${pluginName}">
+ <filename name="*.jar"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <target name="cleanupJars" if="pluginsPath">
+ <antcall target="cleanupJars2"/>
+ </target>
+
+ <target name="cleanupJars2" if="pluginName">
+ <delete>
+ <fileset dir="${pluginsPath}/${pluginName}/lib">
+ <filename name="*.jar"/>
+ </fileset>
+ </delete>
+ </target>
+
+</project>

Back to the top