You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pv...@apache.org on 2018/08/29 07:32:59 UTC

hive git commit: HIVE-20472: mvn test failing for metastore-tool module (Vihang Karajgaonkar, reviewed by Alexander Kolbasov and Peter Vary)

Repository: hive
Updated Branches:
  refs/heads/master d2b81a967 -> ff12054fe


HIVE-20472: mvn test failing for metastore-tool module (Vihang Karajgaonkar, reviewed by Alexander Kolbasov and Peter Vary)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/ff12054f
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/ff12054f
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/ff12054f

Branch: refs/heads/master
Commit: ff12054fe9610c4b841a70490ad8a6fd20938a1d
Parents: d2b81a9
Author: Vihang Karajgaonkar <vi...@apache.org>
Authored: Wed Aug 29 09:28:13 2018 +0200
Committer: Peter Vary <pv...@cloudera.com>
Committed: Wed Aug 29 09:31:55 2018 +0200

----------------------------------------------------------------------
 standalone-metastore/metastore-common/pom.xml | 2 --
 standalone-metastore/metastore-server/pom.xml | 2 --
 standalone-metastore/metastore-tools/pom.xml  | 5 -----
 standalone-metastore/pom.xml                  | 8 ++++++++
 4 files changed, 8 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/ff12054f/standalone-metastore/metastore-common/pom.xml
----------------------------------------------------------------------
diff --git a/standalone-metastore/metastore-common/pom.xml b/standalone-metastore/metastore-common/pom.xml
index b0d9eee..334adf8 100644
--- a/standalone-metastore/metastore-common/pom.xml
+++ b/standalone-metastore/metastore-common/pom.xml
@@ -522,13 +522,11 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>${maven.surefire.version}</version>
         <configuration>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
           <reuseForks>false</reuseForks>
           <forkCount>${test.forkcount}</forkCount>
           <argLine>-Xmx2048m</argLine>
-          <failIfNoTests>false</failIfNoTests>
           <systemPropertyVariables>
             <build.dir>${project.build.directory}</build.dir>
             <datanucleus.schema.autoCreateAll>true</datanucleus.schema.autoCreateAll>

http://git-wip-us.apache.org/repos/asf/hive/blob/ff12054f/standalone-metastore/metastore-server/pom.xml
----------------------------------------------------------------------
diff --git a/standalone-metastore/metastore-server/pom.xml b/standalone-metastore/metastore-server/pom.xml
index f2c10b0..14ea9ce 100644
--- a/standalone-metastore/metastore-server/pom.xml
+++ b/standalone-metastore/metastore-server/pom.xml
@@ -532,13 +532,11 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>${maven.surefire.version}</version>
         <configuration>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
           <reuseForks>false</reuseForks>
           <forkCount>${test.forkcount}</forkCount>
           <argLine>-Xmx2048m</argLine>
-          <failIfNoTests>false</failIfNoTests>
           <systemPropertyVariables>
             <build.dir>${project.build.directory}</build.dir>
             <datanucleus.schema.autoCreateAll>true</datanucleus.schema.autoCreateAll>

http://git-wip-us.apache.org/repos/asf/hive/blob/ff12054f/standalone-metastore/metastore-tools/pom.xml
----------------------------------------------------------------------
diff --git a/standalone-metastore/metastore-tools/pom.xml b/standalone-metastore/metastore-tools/pom.xml
index f6fb6dc..dd721cb 100644
--- a/standalone-metastore/metastore-tools/pom.xml
+++ b/standalone-metastore/metastore-tools/pom.xml
@@ -123,11 +123,6 @@
           <artifactId>maven-compiler-plugin</artifactId>
           <version>3.7.0</version>
         </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <version>${maven.surefire.version}</version>
-        </plugin>
       </plugins>
     </pluginManagement>
   </build>

http://git-wip-us.apache.org/repos/asf/hive/blob/ff12054f/standalone-metastore/pom.xml
----------------------------------------------------------------------
diff --git a/standalone-metastore/pom.xml b/standalone-metastore/pom.xml
index ee3daed..83f5a9e 100644
--- a/standalone-metastore/pom.xml
+++ b/standalone-metastore/pom.xml
@@ -340,6 +340,14 @@
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>${maven.surefire.version}</version>
+          <configuration>
+            <failIfNoTests>false</failIfNoTests>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>