mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 00:36:02 +10:00
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@2144 84d0f5b1-2673-498c-a247-62c4ff18d310
21 lines
412 B
Bash
Executable File
21 lines
412 B
Bash
Executable File
#profile
|
|
PROFILE=""
|
|
if [ "$1" != "" ] ; then
|
|
$PROFILE="-P$1"
|
|
echo "*********************"
|
|
echo "USING PROFILE $1"
|
|
echo "*********************"
|
|
else
|
|
echo "*********************"
|
|
echo "USING DEFAULT PROFILE"
|
|
echo "*********************"
|
|
fi
|
|
|
|
# web ui
|
|
mvn clean eclipse:eclipse package war:exploded -Dmaven.test.skip $PROFILE
|
|
|
|
rc=$?
|
|
if [[ $rc != 0 ]] ; then
|
|
echo "BUILD FAILED $rc"
|
|
exit $rc
|
|
fi |