Files
spring-cloud-stream/buildCore.sh
2022-03-28 15:04:55 -04:00

12 lines
227 B
Bash
Executable File

#!/bin/bash
if [ "$#" -eq 1 ]; then
ARGVALUE=$1
if [[ $ARGVALUE == *"skipTest"* ]]; then
echo "Skippping Tests"
./mvnw clean install -f core/pom.xml -DskipTests
fi
else
./mvnw clean install -f core/pom.xml
fi