You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by rs...@apache.org on 2018/02/27 18:08:50 UTC

svn commit: r1825482 - /openwebbeans/meecrowave/trunk/integration-tests/pom.xml

Author: rsandtner
Date: Tue Feb 27 18:08:50 2018
New Revision: 1825482

URL: http://svn.apache.org/viewvc?rev=1825482&view=rev
Log:
MEECROWAVE-100 skip deployment for integration-test modules

Modified:
    openwebbeans/meecrowave/trunk/integration-tests/pom.xml

Modified: openwebbeans/meecrowave/trunk/integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/openwebbeans/meecrowave/trunk/integration-tests/pom.xml?rev=1825482&r1=1825481&r2=1825482&view=diff
==============================================================================
--- openwebbeans/meecrowave/trunk/integration-tests/pom.xml (original)
+++ openwebbeans/meecrowave/trunk/integration-tests/pom.xml Tue Feb 27 18:08:50 2018
@@ -32,6 +32,10 @@
     For modules requiring custom classpaths.
   </description>
 
+  <properties>
+    <deploy.skip>true</deploy.skip> <!-- as default we don't deploy our integration-test modules upstream -->
+  </properties>
+
   <modules>
     <module>app-groovy</module>
     <module>beanvalidation</module>
@@ -39,4 +43,16 @@
     <module>ssl</module>
     <module>sse</module>
   </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>${deploy.skip}</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>