Remove lingering kinesis binder build script

This commit is contained in:
Soby Chacko
2023-04-12 19:30:44 -04:00
parent 70ba9eef21
commit 02c2138cb9

View File

@@ -1,14 +0,0 @@
#!/bin/bash
if [ "$#" -eq 1 ]; then
ARGVALUE=$1
if [[ $ARGVALUE == *"skipTest"* ]]; then
echo "Skippping Tests"
./mvnw clean install -f core/pom.xml -DskipTests
elif [[ $ARGVALUE == *"disable.checks"* ]]; then
echo "Skippping checkstyle checks"
./mvnw clean install -f core/pom.xml -Ddisable.checks=true
fi
else
./mvnw clean install -f binders/kinesis-binder/pom.xml
fi