mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00

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>
18 lines
638 B
XML
18 lines
638 B
XML
<?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.gdb</artifactId>
|
|
<packaging>eclipse-feature</packaging>
|
|
<version>9.3.0-SNAPSHOT</version>
|
|
</project>
|