1234567891011121314151617181920212223242526272829 |
- #!/bin/bash
- cd ~/project/oe/sources
- #git clone http://git.qmth.com.cn/examcloud-framework/config-center.git
- #git clone http://git.qmth.com.cn/examcloud-backend/examcloud-parent.git
- #git clone http://git.qmth.com.cn/examcloud-backend/examcloud-components.git
- #git clone http://git.qmth.com.cn/examcloud-backend/examcloud-rpc.git
- cd config-center
- git pull
- mvn clean install
- cd ..
- cd examcloud-parent
- git pull
- mvn clean install
- cd ..
- cd examcloud-components
- git pull
- mvn clean install
- cd ..
- cd examcloud-rpc
- git pull
- mvn clean install
- cd ..
- echo "finish..."
|