PromucFlow_constructor/app/server/build.sh
Trisha Anand 2d1fe9d8b4 Merge branch 'release' into feature/acl-spring-object
# Conflicts:
#	appsmith-interfaces/src/main/java/com/appsmith/external/models/SSHPrivateKey.java
#	appsmith-server/src/main/java/com/appsmith/server/filters/AclFilter.java
#	appsmith-server/src/main/java/com/appsmith/server/services/CurlImporterService.java
#	appsmith-server/src/test/java/com/appsmith/server/services/CurlImporterServiceTest.java
2020-04-28 18:13:06 +05:30

16 lines
392 B
Bash
Executable File

#!/bin/bash
# Remove previous dist directory
# 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
cp ./appsmith-plugins/*/target/*.jar dist/plugins/