Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian W. Damus2016-02-13 14:23:56 +0000
committerChristian W. Damus2016-02-13 15:03:01 +0000
commitf050d4119a2316b27588076d4fc90152773fc019 (patch)
treecc86e0e017996eb1f2c8e0e9d5813305c7c2b07f /plugins/editor
parentc3854bd27780a28c10f07d31fd287848dd6c0bb5 (diff)
downloadorg.eclipse.papyrus-f050d4119a2316b27588076d4fc90152773fc019.tar.gz
org.eclipse.papyrus-f050d4119a2316b27588076d4fc90152773fc019.tar.xz
org.eclipse.papyrus-f050d4119a2316b27588076d4fc90152773fc019.zip
Bug 485220: [Architecture] Provide a more modular architecture
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Fix build failure to resolve bundles in referenced p2 repositories by restoring the missing <groupId> elements in the POMs which, as it turns out, are not inherited from the parent module, despite what the m2e validator says. Change-Id: I62dacc9c70c940d28c3c02e1e35c8f874a7d3df0
Diffstat (limited to 'plugins/editor')
-rw-r--r--plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml3
-rw-r--r--plugins/editor/org.eclipse.papyrus.editor/pom.xml3
-rw-r--r--plugins/editor/pom.xml4
3 files changed, 7 insertions, 3 deletions
diff --git a/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml b/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml
index 872d5ce559d..0d50767a463 100644
--- a/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml
+++ b/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml
@@ -3,10 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.papyrus</groupId>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
+ <artifactId>org.eclipse.papyrus.editor-all</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.eclipse.project.editors</artifactId>
+ <groupId>org.eclipse.papyrus</groupId>
<version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/plugins/editor/org.eclipse.papyrus.editor/pom.xml b/plugins/editor/org.eclipse.papyrus.editor/pom.xml
index 8a7a84420fd..eeb1f41b4c9 100644
--- a/plugins/editor/org.eclipse.papyrus.editor/pom.xml
+++ b/plugins/editor/org.eclipse.papyrus.editor/pom.xml
@@ -3,10 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.papyrus</groupId>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
+ <artifactId>org.eclipse.papyrus.editor-all</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.editor</artifactId>
+ <groupId>org.eclipse.papyrus</groupId>
<version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/plugins/editor/pom.xml b/plugins/editor/pom.xml
index 240a26b9e44..6271c30b86f 100644
--- a/plugins/editor/pom.xml
+++ b/plugins/editor/pom.xml
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project>
<modelVersion>4.0.0</modelVersion>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
+ <artifactId>org.eclipse.papyrus.editor-all</artifactId>
+ <groupId>org.eclipse.papyrus</groupId>
+ <version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.eclipse.papyrus</groupId>

Back to the top