Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2014-11-19 18:42:00 +0000
committerlshanmugam2014-11-19 18:43:05 +0000
commit1e7519c3ab24cf7b60170183ead1356df52e1e18 (patch)
tree3a4a6bb956ea22c7533c47e4a04e96e10de580f7
parent1fb1522a48d55b59d07f0c37bf5e56bead8298b5 (diff)
downloadeclipse.platform.swt-1e7519c3ab24cf7b60170183ead1356df52e1e18.tar.gz
eclipse.platform.swt-1e7519c3ab24cf7b60170183ead1356df52e1e18.tar.xz
eclipse.platform.swt-1e7519c3ab24cf7b60170183ead1356df52e1e18.zip
define classpath for xmltask
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 79e0185c8a..b5c4c967e5 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -27,7 +27,11 @@
-->
<project name="swtbuild" basedir=".">
- <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask"/>
+ <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask">
+ <classpath>
+ <pathelement location="${lib.dir}/xmltask.jar"/>
+ </classpath>
+ </taskdef>
<property name="gitroot" value="silenio@dev.eclipse.org:/gitroot/platform/"/>
<property name="TAG" value="master"/>

Back to the top