12345678910111213141516 |
- #!/bin/sh
- # /**
- # * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
- # * No deletion without permission, or be held responsible to law.
- # *
- # * Author: ThinkGem@163.com
- # *
- # */
- echo ""
- echo "[信息] 打包Web工程,生成war/jar包文件。"
- echo ""
- cd ..
- mvn clean install -Dmaven.test.skip=true -Ppackage
- cd bin
|