nginx-tutorial/demos/scripts/build-javaapp.bat

12 lines
276 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@echo off
rem -------------------------------------------------
rem 本脚本用于编译打包 JavaWebApp
rem 环境要求Maven + JDK8
rem -------------------------------------------------
pushd %~dp0..\javaapp
call mvn clean package -Dmaven.test.skip=true
popd
pause