PromucFlow_constructor/app/server/build.sh
2021-09-21 15:59:14 +05:30

25 lines
515 B
Bash
Executable File

#!/bin/bash
# Remove previous dist directory
rm -rf dist/
# Build the code. $@ accepts all the parameters from the input command line and uses it in the maven build command
mvn clean package "$@"
if [ $? -eq 0 ]
then
echo "mvn Successfull"
else
echo "mvn Failed"
exit 1
fi
# Create the dist directory
mkdir -p dist/plugins
# Copy the server jar
cp -v ./appsmith-server/target/server-*.jar dist/
# Copy all the plugins
rsync -av --exclude "original-*.jar" ./appsmith-plugins/*/target/*.jar dist/plugins/