You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by mb...@apache.org on 2021/12/16 13:00:00 UTC

[hive] branch master updated: HIVE-25815: Add flag to skip maven validate phase for Iceberg modules (Marton Bod, reviewed by Peter Vary)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8d0a3a7  HIVE-25815: Add flag to skip maven validate phase for Iceberg modules (Marton Bod, reviewed by Peter Vary)
8d0a3a7 is described below

commit 8d0a3a7df71bdea8df5867354c9df4b30be14e37
Author: Marton Bod <mb...@cloudera.com>
AuthorDate: Thu Dec 16 13:59:43 2021 +0100

    HIVE-25815: Add flag to skip maven validate phase for Iceberg modules (Marton Bod, reviewed by Peter Vary)
---
 iceberg/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/iceberg/pom.xml b/iceberg/pom.xml
index 216b72c..dfede31 100644
--- a/iceberg/pom.xml
+++ b/iceberg/pom.xml
@@ -40,6 +40,7 @@
         <google.errorprone.version>2.5.1</google.errorprone.version>
         <assertj.version>3.19.0</assertj.version>
         <junit.jupiter.version>5.7.2</junit.jupiter.version>
+        <validate.skip>false</validate.skip>
     </properties>
 
     <modules>
@@ -236,6 +237,7 @@
                 <artifactId>spotless-maven-plugin</artifactId>
                 <version>${spotless.maven.plugin.version}</version>
                 <configuration>
+                    <skip>${validate.skip}</skip>
                     <java>
                         <removeUnusedImports />
                         <importOrder>
@@ -266,6 +268,7 @@
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <version>${iceberg.checkstyle.plugin.version}</version>
                 <configuration>
+                    <skip>${validate.skip}</skip>
                     <propertyExpansion>config_loc=${basedir}/${path.to.iceberg.root}/checkstyle/</propertyExpansion>
                     <configLocation>${basedir}/${path.to.iceberg.root}/checkstyle/checkstyle.xml</configLocation>
                     <suppressionsLocation>${basedir}/${path.to.iceberg.root}/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>