Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 188 Bytes

README.md

File metadata and controls

10 lines (10 loc) · 188 Bytes
# testproj
# mvn 打包部署脚本
#!/bin/bash
git pull origin master;
cd testproj/webdemo;
mvn package;
cp target/webdemo.war ${tomcat_dir}/webapps;
${tomcat_dir}/bin/startup.sh