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 77b3199 HBASE-22266 Add yetus personality to connectors to avoid
scaladoc issues
77b3199 is described below
commit 77b31998bec6cb5e37cf65741841294a94afd85c
Author: Balazs Meszaros <[email protected]>
AuthorDate: Thu Apr 18 12:36:04 2019 +0200
HBASE-22266 Add yetus personality to connectors to avoid scaladoc issues
---
dev-support/hbase-personality.sh | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
new file mode 100755
index 0000000..32d7007
--- /dev/null
+++ b/dev-support/hbase-personality.sh
@@ -0,0 +1,35 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+personality_plugins "all"
+
+# customizing yetus build to run scaladoc plugin only on hbase-spark project
+function personality_modules
+{
+ local testtype="$2"
+
+ if [[ "$testtype" != "scaladoc" ]]; then
+ return
+ fi
+
+ clear_personality_queue
+
+ for m in "${CHANGED_MODULES[@]}"; do
+ if [[ "$m" == "spark/hbase-spark" ]]; then
+ personality_enqueue_module spark/hbase-spark
+ fi
+ done
+}