[Releng] Add missing configuration to previous commit

Change-Id: I0dbf89f7ab16d63bff049d0f3c58d844740d1cf9
Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
diff --git a/releng/org.eclipse.papyrus.sysml16.product/pom.xml b/releng/org.eclipse.papyrus.sysml16.product/pom.xml
index 92d1afa..e2c426b 100644
--- a/releng/org.eclipse.papyrus.sysml16.product/pom.xml
+++ b/releng/org.eclipse.papyrus.sysml16.product/pom.xml
@@ -22,24 +22,56 @@
 			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-p2-repository-plugin</artifactId>
+				<version>${tycho.version}</version>
 				<configuration>
 					<includeAllDependencies>true</includeAllDependencies>
 				</configuration>
 			</plugin>
+			<!-- The 32 bit launchers are not supported by the new 4.10 platform framework -->
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>target-platform-configuration</artifactId>
+				<version>${tycho.version}</version>
+				<configuration>
+					<environments>
+						<environment>
+							<os>linux</os>
+							<ws>gtk</ws>
+							<arch>x86_64</arch>
+						</environment>
+						<environment>
+							<os>win32</os>
+							<ws>win32</ws>
+							<arch>x86_64</arch>
+						</environment>
+						<environment>
+							<os>macosx</os>
+							<ws>cocoa</ws>
+							<arch>x86_64</arch>
+						</environment>
+					</environments>
+				</configuration>
+			</plugin>
 			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-p2-director-plugin</artifactId>
 				<version>${tycho.version}</version>
 				<configuration>
-					<profile>org.eclipse.papyrus.sysml</profile>
+					<profile>org.eclipse.papyrus</profile>
 					<formats>
-						<linux>zip</linux>
+						<linux>tar.gz</linux>
 						<macosx>tar.gz</macosx>
+						<solaris>tar.gz</solaris>
 					</formats>
 					<products>
 						<product>
 							<id>${product-id}</id>
 							<rootFolder>papyrusSysML1.6</rootFolder>
+							<rootFolders>
+								<macosx>papyrusSysML1.6.app</macosx>
+								<win32>papyrusSysML1.6</win32>
+								<linux>papyrusSysML1.6</linux>
+							</rootFolders>
 						</product>
 					</products>
 				</configuration>
@@ -59,9 +91,10 @@
 					</execution>
 				</executions>
 			</plugin>
+
 		</plugins>
 	</build>
-	
+
 	<profiles>
 		<profile>
 			<id>sign</id>