572043 Remove pack200 artifact generation

This is required because the pack200 artifacts are deprecated and the
underlying tools have been removed in Java 14.

https://bugs.eclipse.org/bugs/show_bug.cgi?id=572043
diff --git a/maven_plugin_version-master/pom.xml b/maven_plugin_version-master/pom.xml
index db7af96..2a7d5a2 100644
--- a/maven_plugin_version-master/pom.xml
+++ b/maven_plugin_version-master/pom.xml
@@ -451,24 +451,12 @@
         </plugin>
 
         <plugin>
-          <groupId>org.eclipse.tycho.extras</groupId>
-          <artifactId>tycho-pack200a-plugin</artifactId>
-          <version>${master_plugin_tycho-extras_version}</version>
-        </plugin>
-
-        <plugin>
           <groupId>org.eclipse.cbi.maven.plugins</groupId>
           <artifactId>eclipse-jarsigner-plugin</artifactId>
           <version>${master_plugin_jarsigner_version}</version>
         </plugin>
 
         <plugin>
-          <groupId>org.eclipse.tycho.extras</groupId>
-          <artifactId>tycho-pack200b-plugin</artifactId>
-          <version>${master_plugin_tycho-extras_version}</version>
-        </plugin>
-
-        <plugin>
           <groupId>org.eclipse.tycho</groupId>
           <artifactId>target-platform-configuration</artifactId>
           <version>${master_plugin_tycho_version}</version>
diff --git a/maven_sdk_plugin_config-master/pom.xml b/maven_sdk_plugin_config-master/pom.xml
index a579138..89b6f75 100644
--- a/maven_sdk_plugin_config-master/pom.xml
+++ b/maven_sdk_plugin_config-master/pom.xml
@@ -210,30 +210,6 @@
           </plugin>
 
           <plugin>
-            <groupId>org.eclipse.tycho.extras</groupId>
-            <artifactId>tycho-pack200a-plugin</artifactId>
-            <configuration>
-              <supportedProjectTypes>
-                <!-- Project type bundle not enabled in default configuration of 0.22-->
-                <supportedProjectType>bundle</supportedProjectType>
-                <!-- These project types are supported in default configuration -->
-                <supportedProjectType>jar</supportedProjectType>
-                <supportedProjectType>eclipse-plugin</supportedProjectType>
-                <supportedProjectType>eclipse-test-plugin</supportedProjectType>
-              </supportedProjectTypes>
-            </configuration>
-            <executions>
-              <execution>
-                <id>pack200-normalize</id>
-                <goals>
-                  <goal>normalize</goal>
-                </goals>
-                <phase>verify</phase>
-              </execution>
-            </executions>
-          </plugin>
-
-          <plugin>
             <groupId>org.eclipse.cbi.maven.plugins</groupId>
             <artifactId>eclipse-jarsigner-plugin</artifactId>
             <executions>
@@ -248,30 +224,6 @@
           </plugin>
 
           <plugin>
-            <groupId>org.eclipse.tycho.extras</groupId>
-            <artifactId>tycho-pack200b-plugin</artifactId>
-            <configuration>
-              <supportedProjectTypes>
-                <!-- Project type bundle not enabled in default configuration of 0.22-->
-                <supportedProjectType>bundle</supportedProjectType>
-                <!-- These project types are supported in default configuration -->
-                <supportedProjectType>jar</supportedProjectType>
-                <supportedProjectType>eclipse-plugin</supportedProjectType>
-                <supportedProjectType>eclipse-test-plugin</supportedProjectType>
-              </supportedProjectTypes>
-            </configuration>
-            <executions>
-              <execution>
-                <id>pack200-pack</id>
-                <goals>
-                  <goal>pack</goal>
-                </goals>
-                <phase>verify</phase>
-              </execution>
-            </executions>
-          </plugin>
-
-          <plugin>
             <groupId>org.eclipse.tycho</groupId>
             <artifactId>tycho-p2-plugin</artifactId>
             <executions>
@@ -313,40 +265,5 @@
         </plugins>
       </build>
     </profile>
-
-    <profile>
-      <id>eclipse-pack</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.eclipse.tycho.extras</groupId>
-            <artifactId>tycho-pack200a-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>pack200-normalize</id>
-                <goals>
-                  <goal>normalize</goal>
-                </goals>
-                <phase>package</phase>
-              </execution>
-            </executions>
-          </plugin>
-
-          <plugin>
-            <groupId>org.eclipse.tycho.extras</groupId>
-            <artifactId>tycho-pack200b-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>pack200-pack</id>
-                <goals>
-                  <goal>pack</goal>
-                </goals>
-                <phase>package</phase>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>