Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMarc-Andre Laperle2017-04-18 21:36:00 +0000
committerMarc-André Laperle2017-04-19 02:49:39 +0000
commita06ad70d0ad78c378305006ce96a33f984f6995f (patch)
tree5314c7f4d6e91ae370425fb49b96854931aaa4f5 /util
parent3cc96b5873307096005f9304fde1475627ba092c (diff)
downloadorg.eclipse.cdt-a06ad70d0ad78c378305006ce96a33f984f6995f.tar.gz
org.eclipse.cdt-a06ad70d0ad78c378305006ce96a33f984f6995f.tar.xz
org.eclipse.cdt-a06ad70d0ad78c378305006ce96a33f984f6995f.zip
Bring back some pom.xml from features
Those features have the exact same id and groupid than a plugin which throws off SonarQube with: "Two modules have the same id: 'org.eclipse.cdt:org.eclipse.cdt.util'. Each module must have a unique id." In the pom.xml, we can specify a different groupid which resolves the problem. Alternatively, the feature id could have been changed but that would break upgrades. Change-Id: Ib2912ad854a3af431b96f89a6ead1bcb6d06ba60 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Diffstat (limited to 'util')
-rw-r--r--util/org.eclipse.cdt.util-feature/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/util/org.eclipse.cdt.util-feature/pom.xml b/util/org.eclipse.cdt.util-feature/pom.xml
new file mode 100644
index 00000000000..b9757b81e60
--- /dev/null
+++ b/util/org.eclipse.cdt.util-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>
+ <version>9.3.0-SNAPSHOT</version>
+ <artifactId>org.eclipse.cdt.util</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>

Back to the top