Commit 484e34ae by luiz.nunes

Update assemble

parent e7de83bd
......@@ -12,11 +12,15 @@ cp -Rf /tmp/src/. ./
echo "---> Building Spring Boot application from source"
echo "--> # MVN_ARGS = $MVN_ARGS"
echo "--> # GRADLE_ARGS = $GRADLE_ARGS"
if [ -f "mvnw" ]; then
./mvnw clean install $MVN_ARGS
else
mvn clean install $MVN_ARGS
fi
if [ -f "gradlew" ]; then
./gradlew $GRADLE_ARGS
fi
# Fix source directory permissions
fix-permissions ./
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment