Exclude test plugins from Nexus staging
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index cc612b0..ad22390 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -267,6 +267,13 @@
           <skip>true</skip>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.sonatype.plugins</groupId>
+        <artifactId>nexus-staging-maven-plugin</artifactId>
+        <configuration>
+          <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>
diff --git a/osgi-tests/pom.xml b/osgi-tests/pom.xml
index a025bd3..140217e 100644
--- a/osgi-tests/pom.xml
+++ b/osgi-tests/pom.xml
@@ -269,6 +269,13 @@
           <skip>true</skip>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.sonatype.plugins</groupId>
+        <artifactId>nexus-staging-maven-plugin</artifactId>
+        <configuration>
+          <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>