aboutsummaryrefslogtreecommitdiff
path: root/bigtop-packages/src/common/hbase/do-component-build
blob: c69ac4efd9088ea9c05e2223fe5b8d8a051366ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/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.

set -ex

. `dirname $0`/bigtop.bom

export MAVEN_OPTS="-Xmx512m"

if [ "${BIGTOP_JDK:=8}" == "8" ]; then
    MAVEN_ADDITIONAL="-Dadditionalparam=-Xdoclint:none"
fi

if [ $HOSTTYPE = "powerpc64le" ] ; then
  sed  -i "s|<asciidoctor.plugin.version>.*</asciidoctor.plugin.version>|<asciidoctor.plugin.version>1.5.3</asciidoctor.plugin.version>|" pom.xml
  sed -i 's|<jruby.version>.*</jruby.version>|<jruby.version>1.7.23</jruby.version>|' pom.xml
  sed  -i "s|<version>1.5.0-alpha.6</version>|<version>1.5.0-alpha.11</version>|" pom.xml
fi
if [ $HOSTTYPE = "aarch64" ] ; then
  sed -i '/<version>1.5.0-alpha.6<\/version>/,+1d' pom.xml
  sed -i '/<artifactId>asciidoctorj-pdf<\/artifactId>/a\<version>1.5.0-alpha.6<\/version>\n</dependency>\n<dependency>\n<groupId>org.jruby<\/groupId>\n<artifactId>jruby-complete<\/artifactId>\n<version>9.1.8.0<\/version>\n<\/dependency>' pom.xml
fi
mvn -DskipTests -Dslf4j.version=1.6.1         \
    -Dhadoop-two.version=$HADOOP_VERSION      \
    -Dzookeeper.version=$ZOOKEEPER_VERSION    \
    -Dcheckstyle.skip=true                    \
    ${MAVEN_ADDITIONAL} \
    clean site install assembly:single "$@"

rm -rf build
mkdir build
tar -C build --strip-components=1 -xzf hbase-assembly/target/hbase*.tar.gz