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 'ant/org.eclipse.ant.tests.core/plugin.xml')
-rw-r--r--ant/org.eclipse.ant.tests.core/plugin.xml76
1 files changed, 76 insertions, 0 deletions
diff --git a/ant/org.eclipse.ant.tests.core/plugin.xml b/ant/org.eclipse.ant.tests.core/plugin.xml
new file mode 100644
index 000000000..bdadd4a07
--- /dev/null
+++ b/ant/org.eclipse.ant.tests.core/plugin.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?> <!--
+ Copyright (c) 2005, 2008 IBM Corporation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ IBM Corporation - initial API and implementation
+ -->
+
+<plugin>
+
+ <extension
+ point="org.eclipse.ant.core.extraClasspathEntries">
+ <extraClasspathEntry
+ library="lib/antTestsSupport.jar">
+ </extraClasspathEntry>
+ </extension>
+
+ <extension point="org.eclipse.ant.core.antTasks">
+ <antTask
+ name="coolTask"
+ class="org.eclipse.ant.tests.core.support.tasks.AntTestTask"
+ library="lib/antTestsSupport.jar"
+ headless="false">
+ </antTask>
+ <antTask
+ name="coolTask"
+ uri="testing"
+ class="org.eclipse.ant.tests.core.support.tasks.AntTestTask"
+ library="lib/antTestsSupport.jar"
+ headless="false">
+ </antTask>
+ </extension>
+
+ <extension point="org.eclipse.ant.core.antTypes">
+ <antType
+ name="coolType"
+ class="org.eclipse.ant.tests.core.support.types.AntTestPath"
+ library="lib/antTestsSupport.jar"
+ headless="false">
+ </antType>
+ <antType
+ name="coolType"
+ uri="testing"
+ class="org.eclipse.ant.tests.core.support.types.AntTestPath"
+ library="lib/antTestsSupport.jar"
+ headless="false">
+ </antType>
+ </extension>
+
+ <extension
+ point="org.eclipse.ant.core.antProperties">
+ <antProperty
+ name="property.testing"
+ value="true">
+ </antProperty>
+ <antProperty
+ name="property.testing2"
+ value="hey"
+ class= "org.eclipse.does.not.exist">
+ </antProperty>
+ <antProperty
+ name="property.testing3"
+ class= "org.eclipse.ant.tests.core.testplugin.AntTestPropertyValueProvider">
+ </antProperty>
+ <antProperty
+ name="property.headless"
+ value="headless"
+ headless= "false">
+ </antProperty>
+ </extension>
+
+</plugin>

Back to the top