Files
spring-cloud-stream/buildKinesisBinder.sh
2022-09-27 17:03:15 +02:00

12 lines
263 B
Bash
Executable File

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