This is an automated email from the ASF dual-hosted git repository.
adriancole pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-brave-karaf.git
The following commit(s) were added to refs/heads/master by this push:
new a6d951c Skips deployment of integration tests (#26)
a6d951c is described below
commit a6d951c41346e3a3b2cc1ae5080ca7f50c82a1a9
Author: Adrian Cole <adriancole@users.noreply.github.com>
AuthorDate: Sun Feb 10 02:35:45 2019 +0100
Skips deployment of integration tests (#26)
---
itests/pom.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/itests/pom.xml b/itests/pom.xml
index 15a580e..356b6d6 100644
--- a/itests/pom.xml
+++ b/itests/pom.xml
@@ -161,5 +161,14 @@
<filtering>true</filtering>
</testResource>
</testResources>
+ <plugins>
+ <!-- The integration test suite is not a valid dependency to others -->
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project>
|