Change phase of packing/signing to verify for all packages.

Maven central refuses signature when done in different phases.

Change-Id: I18be54d0065e4e38d4e3bca1f27ceedd6af16a5e
Signed-off-by: Arthur van Dorp <Arthur.vanDorp@bsi-software.com>
Reviewed-on: https://git.eclipse.org/r/97725
diff --git a/maven_sdk_plugin_config-master/pom.xml b/maven_sdk_plugin_config-master/pom.xml
index b77e698..9364a0f 100644
--- a/maven_sdk_plugin_config-master/pom.xml
+++ b/maven_sdk_plugin_config-master/pom.xml
@@ -274,7 +274,7 @@
                 <goals>
                   <goal>normalize</goal>
                 </goals>
-                <phase>package</phase>
+                <phase>verify</phase>
               </execution>
             </executions>
           </plugin>
@@ -288,7 +288,7 @@
                 <goals>
                   <goal>sign</goal>
                 </goals>
-                <phase>package</phase>
+                <phase>verify</phase>
               </execution>
             </executions>
           </plugin>
@@ -312,7 +312,7 @@
                 <goals>
                   <goal>pack</goal>
                 </goals>
-                <phase>package</phase>
+                <phase>verify</phase>
               </execution>
             </executions>
           </plugin>
@@ -332,7 +332,7 @@
                 <goals>
                   <goal>p2-metadata</goal>
                 </goals>
-                <phase>package</phase>
+                <phase>verify</phase>
               </execution>
             </executions>
           </plugin>