You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/12/13 11:25:11 UTC

[hbase-connectors] branch master updated: HBASE-23565 Execute tests in hbase-connectors precommit (#53)

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

psomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d616a7  HBASE-23565 Execute tests in hbase-connectors precommit (#53)
9d616a7 is described below

commit 9d616a70f921f0b3fe0bfaf3dc986d6b3bc36b60
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Fri Dec 13 12:25:03 2019 +0100

    HBASE-23565 Execute tests in hbase-connectors precommit (#53)
    
    In the custom hb_maven build tool pass the arguments
    to the original maven function.
    
    Signed-off-by: Balazs Meszaros <me...@apache.org>
---
 dev-support/hbase-personality.sh | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index db4e1ec..2d0cb20 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -194,75 +194,75 @@ function hb_modules_workers {
 
 
 function hb_maven_add_install {
-  maven_add_install
+  maven_add_install "$@"
 }
 
 function hb_maven_delete_install {
-  maven_delete_install
+  maven_delete_install "$@"
 }
 
 function hb_maven_ws_replace {
-  maven_ws_replace
+  maven_ws_replace "$@"
 }
 
 function hb_maven_usage {
-  maven_usage
+  maven_usage "$@"
 }
 
 function hb_maven_parse_args {
-  maven_parse_args
+  maven_parse_args "$@"
 }
 
 function hb_maven_initialize {
-  maven_initialize
+  maven_initialize "$@"
 }
 
 function hb_maven_precheck {
-  maven_precheck
+  maven_precheck "$@"
 }
 
 function hb_maven_filefilter {
-  maven_filefilter
+  maven_filefilter "$@"
 }
 
 function hb_maven_buildfile {
-  maven_buildfile
+  maven_buildfile "$@"
 }
 
 function hb_maven_executor {
-  maven_executor
+  maven_executor "$@"
 }
 
 function hb_maven_javac_logfilter {
-  maven_javac_logfilter
+  maven_javac_logfilter "$@"
 }
 
 function hb_maven_javadoc_logfilter {
-  maven_javadoc_logfilter
+  maven_javadoc_logfilter "$@"
 }
 
 function hb_maven_javac_calcdiffs {
-  maven_javac_calcdiffs
+  maven_javac_calcdiffs "$@"
 }
 
 function hb_maven_javadoc_calcdiffs {
-  maven_javadoc_calcdiffs
+  maven_javadoc_calcdiffs "$@"
 }
 
 function hb_maven_builtin_personality_modules {
-  maven_builtin_personality_modules
+  maven_builtin_personality_modules "$@"
 }
 
 function hb_maven_builtin_personality_file_tests {
-  maven_builtin_personality_file_tests
+  maven_builtin_personality_file_tests "$@"
 }
 
 function hb_maven_reorder_modules {
-  maven_reorder_modules
+  maven_reorder_modules "$@"
 }
 
 function hb_maven_docker_support {
-  maven_docker_support
+  maven_docker_support "$@"
 }
 
 # Copied from Yetus 0.11.1 maven.sh
@@ -310,7 +310,7 @@ function hb_maven_precompile {
 }
 
 function hb_maven_reorder_module_process {
-  maven_reorder_module_process
+  maven_reorder_module_process "$@"
 }
 
 # copied from Apache Yetus 0.11.0 maven.sh