Adding build scripts
This commit is contained in:
11
buildCore.sh
Executable file
11
buildCore.sh
Executable 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
3
buildDependencies.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
./mvnw clean install -f bom/pom.xml
|
||||
11
buildKafkaBinder.sh
Executable file
11
buildKafkaBinder.sh
Executable 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
11
buildRabbitBinder.sh
Executable 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
|
||||
Reference in New Issue
Block a user