[Releng] Remove unsupported pack200

Change-Id: Ie2a168e7dc16894bac86b6e5af3436c4ae0f5c92
Signed-off-by: Pauline DEVILLE <pauline.deville@cea.fr>
diff --git a/pom.xml b/pom.xml
index 467dfd5..7cdfed6 100755
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,5 @@
 <?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">
+<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>
 	<groupId>org.eclipse.papyrus-model2doc</groupId>
 	<artifactId>org.eclipse.papyrus.model2doc</artifactId>
@@ -10,18 +8,18 @@
 	<name>Papyrus Model2Doc</name>
 
 	<properties>
-			<!-- https://repo.maven.apache.org/maven2/ -->
-		<maven.resources.version>3.1.0</maven.resources.version>
+		<!-- https://repo.maven.apache.org/maven2/ -->
+		<maven.resources.version>3.2.0</maven.resources.version>
 		<maven.clean.version>3.1.0</maven.clean.version>
-		<mojo.execmaven.version>1.6.0</mojo.execmaven.version>
-		<maven.compiler.version>3.8.0</maven.compiler.version>
+		<mojo.execmaven.version>3.0.0</mojo.execmaven.version>
+		<maven.compiler.version>3.8.1</maven.compiler.version>
 
 		<tycho-version>2.2.0</tycho-version>
 		<tychoExtrasVersion>2.2.0</tychoExtrasVersion>
-		<jarSignerVersion>1.1.5</jarSignerVersion>
+		<jarSignerVersion>1.3.1</jarSignerVersion>
 		<findbugs.version>3.0.5</findbugs.version>
-		<xtext.version>2.16.0</xtext.version>
-		<jboss.version>1.3.0</jboss.version>
+		<xtext.version>2.23.0</xtext.version>
+		<jboss.version>1.7.0</jboss.version>
 		<jacoco.version>0.8.2</jacoco.version>
 		<testConfig>CI_TESTS_CONFIG</testConfig>
 		<test.argLine>-Xms512m -Xmx2048m -XX:SoftRefLRUPolicyMSPerMB=100</test.argLine>
@@ -69,7 +67,7 @@
 	<repositories>
 		<repository>
 			<id>license-feature</id>
-			<url>http://download.eclipse.org/cbi/updates/license/</url>
+			<url>https://download.eclipse.org/cbi/updates/license/</url>
 			<layout>p2</layout>
 		</repository>
 	</repositories>
@@ -80,12 +78,12 @@
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-resources-plugin</artifactId>
-					<version>2.7</version>
+					<version>${maven.resources.version}</version>
 				</plugin>
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-clean-plugin</artifactId>
-					<version>3.0.0</version>
+					<version>${maven.clean.version}</version>
 				</plugin>
 				<plugin>
 					<groupId>org.eclipse.tycho</groupId>
@@ -104,7 +102,8 @@
 					<artifactId>tycho-p2-repository-plugin</artifactId>
 					<version>${tycho-version}</version>
 				</plugin>
-				<plugin><!-- enable source bundle generation -->
+				<plugin>
+					<!-- enable source bundle generation -->
 					<groupId>org.eclipse.tycho</groupId>
 					<artifactId>tycho-source-plugin</artifactId>
 					<version>${tycho-version}</version>
@@ -140,16 +139,6 @@
 					<version>${tycho-version}</version>
 				</plugin>
 				<plugin>
-					<groupId>org.eclipse.tycho.extras</groupId>
-					<artifactId>tycho-pack200a-plugin</artifactId>
-					<version>${tychoExtrasVersion}</version>
-				</plugin>
-				<plugin>
-					<groupId>org.eclipse.tycho.extras</groupId>
-					<artifactId>tycho-pack200b-plugin</artifactId>
-					<version>${tychoExtrasVersion}</version>
-				</plugin>
-				<plugin>
 					<groupId>org.eclipse.cbi.maven.plugins</groupId>
 					<artifactId>eclipse-jarsigner-plugin</artifactId>
 					<version>${jarSignerVersion}</version>
@@ -184,7 +173,8 @@
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-p2-repository-plugin</artifactId>
 			</plugin>
-			<plugin><!-- enable source bundle generation -->
+			<plugin>
+				<!-- enable source bundle generation -->
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-source-plugin</artifactId>
 				<executions>
@@ -305,25 +295,19 @@
 	</build>
 
 	<profiles>
+		<!-- Stable release profile. Takes +30min. Eclipse servers only -->
 		<profile>
-			<id>packAndSign</id> <!-- Stable release profile. Takes +30min. Eclipse servers only -->
+			<id>sign</id>
+			<activation>
+				<property>
+					<name>SIGN</name>
+					<value>true</value>
+				</property>
+			</activation>
 			<!-- Pack200 -->
 			<build>
 				<plugins>
 					<plugin>
-						<groupId>org.eclipse.tycho.extras</groupId>
-						<artifactId>tycho-pack200a-plugin</artifactId>
-						<version>${tychoExtrasVersion}</version>
-						<executions>
-							<execution>
-								<id>pack200-normalize</id>
-								<goals>
-									<goal>normalize</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
 						<groupId>org.eclipse.cbi.maven.plugins</groupId>
 						<artifactId>eclipse-jarsigner-plugin</artifactId>
 						<version>${jarSignerVersion}</version>
@@ -337,19 +321,6 @@
 						</executions>
 					</plugin>
 					<plugin>
-						<groupId>org.eclipse.tycho.extras</groupId>
-						<artifactId>tycho-pack200b-plugin</artifactId>
-						<version>${tychoExtrasVersion}</version>
-						<executions>
-							<execution>
-								<id>pack200-pack</id>
-								<goals>
-									<goal>pack</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
 						<groupId>org.eclipse.tycho</groupId>
 						<artifactId>tycho-p2-plugin</artifactId>
 						<version>${tycho-version}</version>
@@ -368,59 +339,40 @@
 					</plugin>
 				</plugins>
 			</build>
-			<activation>
-				<property>
-					<name>SIGN</name>
-					<value>true</value>
-				</property>
-			</activation>
 		</profile>
 
 
+		<!-- Nightly profile. Artifacts can be consumed, but are not signed -->
 		<profile>
-			<id>pack</id> <!-- Nightly profile. Artifacts can be consumed, but are not signed -->
-			<build>
-				<plugins>
-					<!-- Pack200 -->
-					<plugin>
-						<groupId>org.eclipse.tycho.extras</groupId>
-						<artifactId>tycho-pack200b-plugin</artifactId>
-						<version>${tychoExtrasVersion}</version>
-						<executions>
-							<execution>
-								<id>pack200-pack</id>
-								<goals>
-									<goal>pack</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>org.eclipse.tycho</groupId>
-						<artifactId>tycho-p2-plugin</artifactId>
-						<version>${tycho-version}</version>
-						<executions>
-							<execution>
-								<id>attach-p2-metadata</id>
-								<phase>package</phase>
-								<goals>
-									<goal>p2-metadata</goal>
-								</goals>
-							</execution>
-						</executions>
-						<configuration>
-							<defaultP2Metadata>false</defaultP2Metadata>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
+			<id>p2</id>
 			<activation>
 				<property>
 					<name>SIGN</name>
 					<value>false</value>
 				</property>
 			</activation>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.eclipse.tycho</groupId>
+						<artifactId>tycho-p2-plugin</artifactId>
+						<version>${tycho-version}</version>
+						<executions>
+							<execution>
+								<id>attach-p2-metadata</id>
+								<phase>package</phase>
+								<goals>
+									<goal>p2-metadata</goal>
+								</goals>
+							</execution>
+						</executions>
+						<configuration>
+							<defaultP2Metadata>false</defaultP2Metadata>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
 		</profile>
 
 	</profiles>
-</project>
+</project>
\ No newline at end of file