diff --git a/buildKinesisBinder.sh b/buildKinesisBinder.sh deleted file mode 100755 index 7b258bad6..000000000 --- a/buildKinesisBinder.sh +++ /dev/null @@ -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