You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2020/11/25 16:59:47 UTC

[accumulo] branch 1.10 updated: Make skipQA profile more human-proof (#1807)

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

ctubbsii pushed a commit to branch 1.10
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/1.10 by this push:
     new 64e01c8  Make skipQA profile more human-proof (#1807)
64e01c8 is described below

commit 64e01c8d339dece29cc51c0630c5cc62e0ac9bda
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Wed Nov 25 11:56:50 2020 -0500

    Make skipQA profile more human-proof (#1807)
    
    Support activation of skipQA profile using either of two options:
    1. `-PskipQA` (existing option) OR
    2. `-DskipQA` (new option in this patch)
---
 pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a794f6c..0aa8095 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1053,8 +1053,13 @@
   </build>
   <profiles>
     <profile>
-      <!-- This profile skips all Quality Assurance checks  -->
+      <!-- This profile skips all Quality Assurance checks; activate with -PskipQA OR -DskipQA  -->
       <id>skipQA</id>
+      <activation>
+        <property>
+          <name>skipQA</name>
+        </property>
+      </activation>
       <properties>
         <accumulo.skip>true</accumulo.skip>
         <apilyzer.skip>true</apilyzer.skip>