PromucFlow_constructor/app/server/build.sh

21 lines
443 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 "$@"
# Create the dist directory
mkdir -p dist/plugins
# Copy the server jar
cp ./appsmith-server/target/server-1.0-SNAPSHOT.jar dist/
# Copy all the plugins
rsync -av --exclude "original-*.jar" ./appsmith-plugins/*/target/*.jar dist/plugins/