Simple parent pom with modules.

Shell scripts for building core, kafka binder, rabbit binder
and bom (dependencies) modules individually.
This commit is contained in:
Soby Chacko
2022-03-07 17:20:39 -05:00
parent 9fb42b65d9
commit 6c8423365a
6 changed files with 45 additions and 35 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