forked from patrickangeles/cdh-maven-archetype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
create-deploy-file.sh
executable file
·45 lines (40 loc) · 1.28 KB
/
create-deploy-file.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
#!/bin/bash
#
# Copyright (c) 2011, Cloudera, Inc. All Rights Reserved.
#
# Cloudera, Inc. 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
#
# This software 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.
#
#
# Script to create and deploy an archetype from an existing mvn project to a local directory.
# Full (not relative) paths should be used for the LOCAL_PATH argument.
#
#
ARCHETYPE=$1
LOCAL_PATH=$2
if [ "${ARCHETYPE}" == "" ] || [ "${LOCAL_PATH}" == "" ] ; then
echo "Usage: create-deploy-file.sh <path-to-archetype-project> <deploy-dir>"
exit 1
fi
if [ ! -e ${ARCHETYPE}/pom.xml ] ; then
echo "${ARCHETYPE} is not a maven project directory"
exit 1
fi
if [ ! -d ${LOCAL_PATH} ] ; then
echo "${LOCAL_PATH} directory does not exist"
exit 1
fi
cd $ARCHETYPE
mvn clean
mvn eclipse:clean
mvn archetype:create-from-project
cd target/generated-sources/archetype
mvn deploy -DaltDeploymentRepository=cdh-maven::default::file:$LOCAL_PATH