PromucFlow_constructor/app/server/build.sh

25 lines
515 B
Bash
Raw Normal View History

#!/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 "$@"
2021-07-26 00:07:10 +00:00
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
2021-09-21 10:29:14 +00:00
cp -v ./appsmith-server/target/server-*.jar dist/
# Copy all the plugins
rsync -av --exclude "original-*.jar" ./appsmith-plugins/*/target/*.jar dist/plugins/