-
Notifications
You must be signed in to change notification settings - Fork 2
/
installdeps.sh
executable file
·31 lines (25 loc) · 1.08 KB
/
installdeps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
function installfromgit {
git clone $1
cd $2
mvn install
cd ..
}
mkdir -p ~/.m2/repository/
mkdir -p ~/.m2/repository/com/googlecode/
cp -r ./nonmavendeps/gwtchismes/ ~/.m2/repository/.
cp -r ./nonmavendeps/com/googlecode/* ~/.m2/repository/com/googlecode/.
if [ -d ./deps ]; then
rm -Rf ./deps
fi
mkdir ./deps
cd ./deps
installfromgit https://github.com/billy1380/markdown4j-gwt.git markdown4j-gwt
installfromgit https://github.com/billy1380/emoji-gwt.git emoji-gwt
installfromgit https://github.com/billy1380/gson-gwt.git gson-gwt
installfromgit https://github.com/WillShex/willshex-utility.git willshex-utility
installfromgit https://github.com/WillShex/willshex-gson.git willshex-gson
installfromgit https://github.com/WillShex/willshex-gson-web-service.git willshex-gson-web-service
installfromgit https://github.com/WillShex/willshex-server.git willshex-server
installfromgit https://github.com/WillShex/willshex-gson-web-service-appengine.git willshex-gson-web-service-appengine
installfromgit https://github.com/WillShex/willshex-service.git willshex-service