| 123456789101112131415161718192021222324252627282930 |
- #!/bin/bash
- ###############################################################################
- # 构建 jar 包
- ###############################################################################
- set -e
- base_dir = '/home/reghao/Downloads'
- ###############################################################################
- # 构建依赖
- ###############################################################################
- cd ${base_dir}
- git clone https://git.reghao.cn/reghao/jutil
- cd jutil
- mvn clean install package -Dmaven.test.skip=true
- cd ${base_dir}
- git clone https://git.reghao.cn/reghao/oss
- cd oss
- mvn install package -Dmaven.test.skip=true -pl oss/oss-api
- mvn install package -Dmaven.test.skip=true -pl oss/oss-sdk
- ###############################################################################
- # 构建 tnb 应用
- ###############################################################################
- cd ${base_dir}
- git clone https://git.reghao.cn/reghao/tnb
- mvn clean package -Dmaven.test.skip -Ptest
|