Files
spring-cloud-stream/buildSchemaRegistry.sh
2022-08-26 14:29:22 -04:00

12 lines
249 B
Bash
Executable File

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