You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2020/07/17 14:06:27 UTC

[pulsar] branch master updated: Add maven profile to skip broker unit tests (#7570)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new cfa0b0f  Add maven profile to skip broker unit tests (#7570)
cfa0b0f is described below

commit cfa0b0f1471f0f5cdab4dd07d8b78b76c84cc2bb
Author: Ali Ahmed <al...@gmail.com>
AuthorDate: Fri Jul 17 07:06:09 2020 -0700

    Add maven profile to skip broker unit tests (#7570)
    
    Co-authored-by: Ali Ahmed <al...@splunk.com>
---
 pulsar-broker/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/pulsar-broker/pom.xml b/pulsar-broker/pom.xml
index 1187363..74bd351 100644
--- a/pulsar-broker/pom.xml
+++ b/pulsar-broker/pom.xml
@@ -544,5 +544,19 @@
         </pluginManagement>
       </build>
     </profile>
+    <profile>
+      <id>brokerSkipTest</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 </project>