Adding build scripts

This commit is contained in:
Soby Chacko
2022-03-28 15:04:55 -04:00
parent 718171dd61
commit d459a2f42c
4 changed files with 36 additions and 0 deletions

11
buildCore.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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

3
buildDependencies.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
./mvnw clean install -f bom/pom.xml

11
buildKafkaBinder.sh Executable file
View File

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

11
buildRabbitBinder.sh Executable file
View File

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