Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2017-08-24 12:02:11 +0000
committerQuentin Le Menez2017-08-24 12:35:37 +0000
commit083400edae3d13b0e5c1fa57ee66f32e3395c507 (patch)
tree4e5ea719f7f7c7131c2defbea9d92b4ded3eff6b /plugins/editor
parent3c59ccd3ce627d25c04b3a5542906328b4a9854d (diff)
downloadorg.eclipse.papyrus-083400edae3d13b0e5c1fa57ee66f32e3395c507.tar.gz
org.eclipse.papyrus-083400edae3d13b0e5c1fa57ee66f32e3395c507.tar.xz
org.eclipse.papyrus-083400edae3d13b0e5c1fa57ee66f32e3395c507.zip
Bug 520683: [releng] integrate editor plugin to the build and respect
convention Actions -create pom -change version -respect convention for intermediate pom Review -do we need the plugin or not, seems to have no dependency on it Change-Id: Ic589c85959b65d81ac5bf13c64804afa06e7fbf3 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=520683 Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
Diffstat (limited to 'plugins/editor')
-rw-r--r--plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml2
-rw-r--r--plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/pom.xml13
-rw-r--r--plugins/editor/org.eclipse.papyrus.editor/pom.xml5
-rw-r--r--plugins/editor/pom.xml11
4 files changed, 24 insertions, 7 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 4e6481f4f25..5e88c787d88 100644
--- a/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml
+++ b/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/pom.xml
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.papyrus</groupId>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
+ <artifactId>org.eclipse.papyrus-editor</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.eclipse.project.editors</artifactId>
diff --git a/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/pom.xml b/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/pom.xml
new file mode 100644
index 00000000000..9bea53b5ee3
--- /dev/null
+++ b/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/pom.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.papyrus</groupId>
+ <artifactId>org.eclipse.papyrus-editor</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>org.eclipse.papyrus.editor.perspectiveconfiguration</artifactId>
+ <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 784ba268305..b3aca5553ca 100644
--- a/plugins/editor/org.eclipse.papyrus.editor/pom.xml
+++ b/plugins/editor/org.eclipse.papyrus.editor/pom.xml
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.papyrus</groupId>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
+ <artifactId>org.eclipse.papyrus-editor</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.editor</artifactId>
diff --git a/plugins/editor/pom.xml b/plugins/editor/pom.xml
index 240a26b9e44..0b920a330e8 100644
--- a/plugins/editor/pom.xml
+++ b/plugins/editor/pom.xml
@@ -1,18 +1,21 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<project>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <artifactId>org.eclipse.papyrus.editor</artifactId>
- <packaging>pom</packaging>
<parent>
<groupId>org.eclipse.papyrus</groupId>
<artifactId>org.eclipse.papyrus.plugins</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
+ <artifactId>org.eclipse.papyrus-editor</artifactId>
+ <packaging>pom</packaging>
+
<name>Papyrus Editor</name>
<description>The Eclipse Editors contributions of Papyrus, including the multi-page model editor.</description>
<modules>
<module>org.eclipse.papyrus.eclipse.project.editors</module>
<module>org.eclipse.papyrus.editor</module>
+ <module>org.eclipse.papyrus.editor.perspectiveconfiguration</module>
</modules>
</project>

Back to the top