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

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


The following commit(s) were added to refs/heads/master by this push:
     new b8a63cf32e DRILL-8279: Rename skip tests property to match 
maven-surefire property name
b8a63cf32e is described below

commit b8a63cf32ef0cc2cc88d27e2c51d8bc26617f602
Author: Volodymyr Vysotskyi <[email protected]>
AuthorDate: Tue Aug 16 13:20:16 2022 +0300

    DRILL-8279: Rename skip tests property to match maven-surefire property name
---
 contrib/storage-phoenix/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/contrib/storage-phoenix/pom.xml b/contrib/storage-phoenix/pom.xml
index 4fe3829569..664f131fae 100644
--- a/contrib/storage-phoenix/pom.xml
+++ b/contrib/storage-phoenix/pom.xml
@@ -32,7 +32,7 @@
     <phoenix.version>5.1.2</phoenix.version>
     <!-- Keep the 2.4.2 to reduce dependency conflict -->
     <hbase.minicluster.version>2.4.2</hbase.minicluster.version>
-    <phoenix.skip.tests>false</phoenix.skip.tests>
+    <skipTests>false</skipTests>
   </properties>
 
   <dependencies>
@@ -363,7 +363,7 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <skipTests>${phoenix.skip.tests}</skipTests>
+          <skipTests>${skipTests}</skipTests>
           <forkCount combine.self="override">1</forkCount>
           <reuseForks>false</reuseForks>
           <includes>
@@ -382,7 +382,7 @@
     <profile>
       <id>hadoop-2</id>
       <properties>
-        <phoenix.skip.tests>true</phoenix.skip.tests>
+        <skipTests>true</skipTests>
       </properties>
       <build>
         <plugins>

Reply via email to