forked from rvadali/fb-raid-refactoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copy-hdfs-jars-to-maven.sh
executable file
·63 lines (54 loc) · 1.57 KB
/
copy-hdfs-jars-to-maven.sh
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
#
# Use this script to publish this jars to your local maven repo (~/.m2).
# This is required for HBase to be able to pick up the HDFS jars (core
# and test) built in titan/VENDOR/hadoop-0.20/.
#
BASEDIR=`dirname $0`
cd ${BASEDIR}
if [ ! -f build/hadoop-0.20.1-dev-core.jar ]; then
if [ ! -f build/hadoop-0.20-core.jar ]; then
echo "core jar not found. Running 'ant jar'..."
ant jar | grep BUILD;
fi
fi
if [ ! -f build/hadoop-0.20.1-dev-test.jar ]; then
if [ ! -f build/hadoop-0.20-test.jar ]; then
echo "test jar not found. Running 'ant jar-test'..."
ant jar-test | grep BUILD;
fi
fi
#
# The names of core/test jar name depend
# on whether they were generated using
# build_all.sh script or just the vanilla
# simple ant jar/jar-test
#
if [ -f build/hadoop-0.20.1-dev-core.jar ]; then
CORE_JAR=build/hadoop-0.20.1-dev-core.jar
else
CORE_JAR=build/hadoop-0.20-core.jar
fi
if [ -f build/hadoop-0.20.1-dev-test.jar ]; then
TEST_JAR=build/hadoop-0.20.1-dev-test.jar
else
TEST_JAR=build/hadoop-0.20-test.jar
fi
echo "** Publishing hadoop* core & test jars "
echo "** to "
echo "** your local maven repo (~/.m2/repository). "
echo "** HBase builds will pick up the HDFS* jars from the local maven repo."
mvn install:install-file \
-DgeneratePom=true \
-DgroupId=org.apache.hadoop \
-DartifactId=hadoop-core \
-Dversion=0.20 \
-Dpackaging=jar \
-Dfile=${CORE_JAR}
mvn install:install-file \
-DgeneratePom=true \
-DgroupId=org.apache.hadoop \
-DartifactId=hadoop-test \
-Dversion=0.20 \
-Dpackaging=jar \
-Dfile=${TEST_JAR}