Remove pack goal from signer and add pack200 plugin to pom
diff --git a/site/pom.xml b/site/pom.xml
index 256f802..9e91d92 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -35,6 +35,8 @@
 				<staging.directory>/home/data/httpd/download-staging.priv/soa/bpel</staging.directory>
 				<publish.directory>/shared/soa/bpel/${project.version}/${platform.name}</publish.directory>
 				<update.site.directory>${publish.directory}/update-site</update.site.directory>
+				<tycho-version>0.16.0</tycho-version>
+				<tycho-extras-version>${tycho-version}</tycho-extras-version>
 			</properties>
 			
 			<build>
@@ -42,23 +44,26 @@
 				
 					<!-- Pack and sign the update site -->
 					<plugin>
+						<groupId>org.eclipse.tycho.extras</groupId>
+						<artifactId>tycho-pack200a-plugin</artifactId>
+						<version>${tycho-extras-version}</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>1.0.5</version>
 								
 						<executions>
 							<execution>
-								<id>pack</id>
-								<configuration>
-									<inputFile>${project.build.directory}/site.zip</inputFile>
-								</configuration>
-								<phase>package</phase>
-								<goals>
-									<goal>pack</goal>
-								</goals>
-							</execution>
-							 
-							<execution>
 								<id>sign</id>
 								<configuration>
 									<inputFile>${project.build.directory}/site.zip</inputFile>
@@ -70,28 +75,23 @@
 									<goal>sign</goal>
 								</goals>
 							</execution>
-							 
+						</executions>
+					</plugin>
+
+					<plugin>
+						<groupId>org.eclipse.tycho.extras</groupId>
+						<artifactId>tycho-pack200b-plugin</artifactId>
+						<version>${tycho-extras-version}</version>
+						<executions>
 							<execution>
-								<id>repack</id>
-								<configuration>
-									<inputFile>${project.build.directory}/signed/site_assembly.zip</inputFile>
-								</configuration>
-								<phase>package</phase>
+								<id>pack200-pack</id>
 								<goals>
 									<goal>pack</goal>
 								</goals>
 							</execution>
-							 
-							<execution>
-								<id>fixCheckSums</id>
-								<phase>package</phase>
-								<goals>
-									<goal>fixCheckSums</goal>
-								</goals>
-							</execution>
 						</executions>
 					</plugin>
-					
+				
 					<!-- Publish the update site -->
 					<plugin>
 						<artifactId>maven-antrun-plugin</artifactId>