more signing changes
diff --git a/pom.xml b/pom.xml
index 174473a..2f21bec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,11 +73,20 @@
 					<extensions>true</extensions>

 				</plugin>

 				<plugin>

+					<groupId>org.eclipse.tycho</groupId>

+					<artifactId>tycho-p2-plugin</artifactId>

+					<version>${tycho.version}</version>

+				</plugin>

+				<plugin>

+					<groupId>org.eclipse.tycho</groupId>

+					<artifactId>target-platform-configuration</artifactId>

+					<version>${tycho.version}</version>

+				</plugin>

+				<plugin>

 					<groupId>org.eclipse.cbi.maven.plugins</groupId>

 					<artifactId>eclipse-jarsigner-plugin</artifactId>

 					<version>1.0.5</version>

 				</plugin>

-

 				<plugin>

 					<groupId>org.eclipse.tycho.extras</groupId>

 					<artifactId>tycho-pack200a-plugin</artifactId>

@@ -94,23 +103,72 @@
 	</build>

 	<profiles>

 		<profile>

-			<id>sign</id>

+			<id>eclipse-sign</id>

 			<build>

 				<plugins>

+					

+					<plugin>

+						<groupId>org.eclipse.tycho</groupId>

+						<artifactId>target-platform-configuration</artifactId>

+						<configuration>

+							<includePackedArtifacts>true</includePackedArtifacts>

+						</configuration>

+					</plugin>

+					<plugin>

+						<groupId>org.eclipse.tycho.extras</groupId>

+						<artifactId>tycho-pack200a-plugin</artifactId>

+						<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>

-						<version>1.0.5</version>

 						<executions>

 							<execution>

 								<id>sign</id>

-								<phase>verify</phase>

 								<goals>

 									<goal>sign</goal>

 								</goals>

+								<phase>verify</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>verify</phase>

+							</execution>

+						</executions>

+					</plugin>

+					<plugin>

+						<groupId>org.eclipse.tycho</groupId>

+						<artifactId>tycho-p2-plugin</artifactId>

+						<executions>

+							<execution>

+								<id>p2-metadata</id>

+								<goals>

+									<goal>p2-metadata</goal>

+								</goals>

+								<phase>verify</phase>

+							</execution>

+						</executions>

+						<configuration>

+							<defaultP2Metadata>false</defaultP2Metadata>

+						</configuration>

+					</plugin>

 				</plugins>

 			</build>

 		</profile>