Simple parent pom with modules.
Shell scripts for building core, kafka binder, rabbit binder and bom (dependencies) modules individually.
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
|
||||
Reference in New Issue
Block a user