Merge pull request #26 from kakulisen/master

SCB-1460 Skip the deployment of samples and it
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index c90ae58..32a1741 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -32,5 +32,16 @@
     <module>coverage-aggregate</module>
   </modules>
 
-
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>2.8.2</version>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file
diff --git a/samples/pom.xml b/samples/pom.xml
index b319fbb..49ea1d5 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -33,4 +33,17 @@
     <module>verify-with-code-sample</module>
   </modules>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>2.8.2</version>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>
\ No newline at end of file