Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2013-11-13 07:04:37 +0000
committerDoug Schaefer2013-11-13 14:36:08 +0000
commitc980af0e111af8e84401cc3773ea16da0a6ba109 (patch)
treee7ce82a5e1808da7b76eb9a2525ecb231b18ab2f /releng/org.eclipse.cdt.testing-feature
parent33174d0697692ea64709be18ba67b8d06d8d4230 (diff)
downloadorg.eclipse.cdt-c980af0e111af8e84401cc3773ea16da0a6ba109.tar.gz
org.eclipse.cdt-c980af0e111af8e84401cc3773ea16da0a6ba109.tar.xz
org.eclipse.cdt-c980af0e111af8e84401cc3773ea16da0a6ba109.zip
Bug 419983: Add a testing update site that contains the testing feature
I also removed some test plug-ins from the feature that were not getting built and therefore could not be included. Change-Id: I4c450b3029a5010c3f23b2dcda5c1356b9295688 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Reviewed-on: https://git.eclipse.org/r/18323 Reviewed-by: Doug Schaefer <dschaefer@qnx.com> IP-Clean: Doug Schaefer <dschaefer@qnx.com> Tested-by: Doug Schaefer <dschaefer@qnx.com>
Diffstat (limited to 'releng/org.eclipse.cdt.testing-feature')
-rw-r--r--releng/org.eclipse.cdt.testing-feature/feature.xml27
-rw-r--r--releng/org.eclipse.cdt.testing-feature/pom.xml17
2 files changed, 17 insertions, 27 deletions
diff --git a/releng/org.eclipse.cdt.testing-feature/feature.xml b/releng/org.eclipse.cdt.testing-feature/feature.xml
index 3b76a46ccf3..9882510ce77 100644
--- a/releng/org.eclipse.cdt.testing-feature/feature.xml
+++ b/releng/org.eclipse.cdt.testing-feature/feature.xml
@@ -19,12 +19,6 @@
</license>
<plugin
- id="org.eclipse.cdt.debug.ui.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
id="org.eclipse.cdt.ui.tests"
download-size="0"
install-size="0"
@@ -68,31 +62,10 @@
version="0.0.0"/>
<plugin
- id="org.eclipse.cdt.core.lrparser.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.eclipse.cdt.core.parser.upc.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
id="org.eclipse.cdt.codan.core.test"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
- <plugin
- id="org.eclipse.cdt.core.lrparser.xlc.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
</feature>
diff --git a/releng/org.eclipse.cdt.testing-feature/pom.xml b/releng/org.eclipse.cdt.testing-feature/pom.xml
new file mode 100644
index 00000000000..20b84ba20e5
--- /dev/null
+++ b/releng/org.eclipse.cdt.testing-feature/pom.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.cdt</groupId>
+ <artifactId>cdt-parent</artifactId>
+ <version>8.3.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.cdt.features</groupId>
+ <artifactId>org.eclipse.cdt.testing</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>

Back to the top