Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorJeff Johnston2017-09-20 17:39:05 +0000
committerJeff Johnston2017-09-20 17:39:05 +0000
commitf849b096792ea1ad97afce6cd4e9202647ef9343 (patch)
tree6c0213f2a148a795ffb02f71aa1a4432573fada9 /releng
parent2aeb75d1472138a1957c7734e91570b81e0f2cb9 (diff)
downloadorg.eclipse.cdt-f849b096792ea1ad97afce6cd4e9202647ef9343.tar.gz
org.eclipse.cdt-f849b096792ea1ad97afce6cd4e9202647ef9343.tar.xz
org.eclipse.cdt-f849b096792ea1ad97afce6cd4e9202647ef9343.zip
Add some missing feature pom.xml files for Sonar job to work
- org.eclipse.cdt and org.eclipse.cdt.sdk features have same name as plug-ins so we need a pom.xml to distinguish the groupid for Sonar job to work Change-Id: I7098021d40fec66ee5a6dc093bd12c3ee896c4f7
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.cdt-feature/pom.xml18
-rw-r--r--releng/org.eclipse.cdt.sdk-feature/pom.xml18
2 files changed, 36 insertions, 0 deletions
diff --git a/releng/org.eclipse.cdt-feature/pom.xml b/releng/org.eclipse.cdt-feature/pom.xml
new file mode 100644
index 00000000000..37af63cad5a
--- /dev/null
+++ b/releng/org.eclipse.cdt-feature/pom.xml
@@ -0,0 +1,18 @@
+<?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>9.3.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.cdt.features</groupId>
+ <artifactId>org.eclipse.cdt</artifactId>
+ <version>9.4.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/releng/org.eclipse.cdt.sdk-feature/pom.xml b/releng/org.eclipse.cdt.sdk-feature/pom.xml
new file mode 100644
index 00000000000..f295fb4a07e
--- /dev/null
+++ b/releng/org.eclipse.cdt.sdk-feature/pom.xml
@@ -0,0 +1,18 @@
+<?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>9.3.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.cdt.features</groupId>
+ <artifactId>org.eclipse.cdt.sdk</artifactId>
+ <version>9.4.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>

Back to the top