archetype-resources.launch-dev.sh Maven / Gradle / Ivy
#!/bin/bash
cd ..
MVN_ARG_LINE=()
for arg in "$@"
do
case "$arg" in
*)
MVN_ARG_LINE+=("$arg")
;;
esac
done
startDateTime=`date +%s`
# check that Maven args are non empty
if [ "$MVN_ARG_LINE" != "" ] ; then
mvnBin="mvn"
if [ -a $M3_HOME/bin/mvn ] ; then
mvnBin="$M3_HOME/bin/mvn"
fi
echo
echo "Running maven build on available projects (using Maven binary '$mvnBin')"
"$mvnBin" -v
echo
projects=( "*-model" "*-kjar" "MYSERVICE_NAME_MARKER")
for suffix in "${projects[@]}"; do
for repository in $suffix; do
echo
if [ -d "$repository" ]; then
echo "==============================================================================="
echo "$repository"
echo "==============================================================================="
cd $repository
"$mvnBin" "${MVN_ARG_LINE[@]}"
returnCode=$?
if [ $returnCode != 0 ] ; then
exit $returnCode
fi
cd ..
fi
done;
done;
endDateTime=`date +%s`
spentSeconds=`expr $endDateTime - $startDateTime`
echo
echo "Total build time: ${spentSeconds}s"
else
echo "No Maven arguments skipping maven build"
fi
echo "Launching the application in development mode - requires connection to controller (workbench)"
pattern="MYSERVICE_NAME_MARKER"
files=( $pattern )
cd ${files[0]}
executable="$(ls *target//*.jar | tail -n1)"
java -Dspring.profiles.active=dev -jar "$executable"
© 2015 - 2025 Weber Informatics LLC | Privacy Policy