Files
spring-cloud-stream/buildCore.sh
Soby Chacko 6c8423365a Simple parent pom with modules.
Shell scripts for building core, kafka binder, rabbit binder
and bom (dependencies) modules individually.
2022-03-07 17:23:58 -05: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