You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
717 B
Bash
28 lines
717 B
Bash
#!/bin/bash
|
|
cd `dirname $0`
|
|
BuildDir=`pwd` #工程根目录
|
|
|
|
echo "build web"
|
|
cd $BuildDir/report-ui
|
|
npm install >/dev/null 2>&1
|
|
npm run build:prod >/dev/null 2>&1
|
|
|
|
echo "publish web to springboot src/main/resources/static"
|
|
mv $BuildDir/report-ui/dist $BuildDir/report-core/src/main/resources/static
|
|
|
|
|
|
echo "build springboot"
|
|
cd $BuildDir/report-core
|
|
mvn clean >/dev/null 2>&1
|
|
mvn package -Dmaven.test.skip=true >/dev/null 2>&1
|
|
|
|
echo "zip finish in build dir"
|
|
if [ ! -d "$BuildDir/build" ]; then
|
|
mkdir $BuildDir/build
|
|
fi
|
|
mv $BuildDir/report-core/target/report-core-1.0.0-SNAPSHOT-assembly.zip $BuildDir/build/
|
|
|
|
|
|
cd $BuildDir/
|
|
rm -rf $BuildDir/report-core/src/main/resources/static
|
|
git reset --hard >/dev/null 2>&1 |