Bug 526948 - [PapyrusReq] add proxy stereotype to other elements

Change-Id: Ifdc2b0fc4e1677b46a0ec49945ae9e52a4452bda
diff --git a/features/org.eclipse.papyrus.requirements.core.feature/feature.xml b/features/org.eclipse.papyrus.requirements.core.feature/feature.xml
index 638739f..1daf396 100755
--- a/features/org.eclipse.papyrus.requirements.core.feature/feature.xml
+++ b/features/org.eclipse.papyrus.requirements.core.feature/feature.xml
@@ -156,6 +156,12 @@
          install-size="0"
          version="0"
          unpack="false"/>
+   <plugin
+         id="org.eclipse.papyrus.proxy"
+         download-size="0"
+         install-size="0"
+         version="0"
+         unpack="false"/>
 		 
    <plugin
          id="org.eclipse.papyrus.requirements.sysml14.papyrusre.modellibrary"
diff --git a/plugins/pom.xml b/plugins/pom.xml
index 6d2e333..a53d587 100755
--- a/plugins/pom.xml
+++ b/plugins/pom.xml
@@ -38,6 +38,7 @@
 		<!-- module>sysml11</module-->
 		<module>common</module> 
 		<module>sysml14</module> 
+		<module>proxy</module> 
 		
 	</modules>
 	
diff --git a/plugins/proxy/org.eclipse.papyrus.proxy.ui/pom.xml b/plugins/proxy/org.eclipse.papyrus.proxy.ui/pom.xml
new file mode 100644
index 0000000..642e412
--- /dev/null
+++ b/plugins/proxy/org.eclipse.papyrus.proxy.ui/pom.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    /*****************************************************************************
+     * Copyright (c) 2017 CEA LIST.
+     *
+     * All rights reserved. This program and the accompanying materials
+     * are made available under the terms of the Eclipse Public License v1.0
+     * which accompanies this distribution, and is available at
+     * http://www.eclipse.org/legal/epl-v10.html
+     *
+     * Contributors:
+     * 		CEA LIST - Initial API and implementation
+     *
+     *****************************************************************************/
+ -->
+
+<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 POM (i.e., Bundles) -->
+	<parent>
+		<groupId>org.eclipse.papyrus.requirements</groupId>
+		<artifactId>org.eclipse.papyrus.proxy-root</artifactId>
+		<version>0.7.0-SNAPSHOT</version>
+	</parent>
+	
+	<!-- POM Description -->
+	<artifactId>org.eclipse.papyrus.proxy.ui</artifactId>
+	<packaging>eclipse-plugin</packaging>
+</project>
\ No newline at end of file
diff --git a/plugins/proxy/org.eclipse.papyrus.proxy/pom.xml b/plugins/proxy/org.eclipse.papyrus.proxy/pom.xml
new file mode 100644
index 0000000..5c60b6f
--- /dev/null
+++ b/plugins/proxy/org.eclipse.papyrus.proxy/pom.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    /*****************************************************************************
+     * Copyright (c) 2017 CEA LIST.
+     *
+     * All rights reserved. This program and the accompanying materials
+     * are made available under the terms of the Eclipse Public License v1.0
+     * which accompanies this distribution, and is available at
+     * http://www.eclipse.org/legal/epl-v10.html
+     *
+     * Contributors:
+     * 		CEA LIST - Initial API and implementation
+     *
+     *****************************************************************************/
+ -->
+
+<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 POM (i.e., Bundles) -->
+	<parent>
+		<groupId>org.eclipse.papyrus.requirements</groupId>
+		<artifactId>org.eclipse.papyrus.proxy-root</artifactId>
+		<version>0.7.0-SNAPSHOT</version>
+	</parent>
+	
+	<!-- POM Description -->
+	<artifactId>org.eclipse.papyrus.proxy</artifactId>
+	<packaging>eclipse-plugin</packaging>
+</project>
\ No newline at end of file
diff --git a/plugins/proxy/pom.xml b/plugins/proxy/pom.xml
new file mode 100644
index 0000000..a1b5f2d
--- /dev/null
+++ b/plugins/proxy/pom.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    /*****************************************************************************
+     * Copyright (c) 2017 CEA LIST.
+     *
+     * All rights reserved. This program and the accompanying materials
+     * are made available under the terms of the Eclipse Public License v1.0
+     * which accompanies this distribution, and is available at
+     * http://www.eclipse.org/legal/epl-v10.html
+     *
+     * Contributors:
+     * 		CEA LIST - Initial API and implementation
+     *
+     *****************************************************************************/
+ -->
+
+<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 POM (i.e., Bundles) -->
+	<parent>
+		<groupId>org.eclipse.papyrus.requirements</groupId>
+		<artifactId>org.eclipse.papyrus.requirements.plugins</artifactId>
+		<version>0.7.0-SNAPSHOT</version>
+	</parent>
+	
+	<!-- POM Description -->
+	<artifactId>org.eclipse.papyrus.proxy-root</artifactId>
+	<packaging>pom</packaging>
+	<name>Proxy for UML</name>
+	
+	<!-- Modules to build -->
+	
+	<modules>
+		<module>org.eclipse.papyrus.proxy</module>
+	</modules>
+</project>