-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·47 lines (38 loc) · 746 Bytes
/
Copy pathbuild.sh
File metadata and controls
executable file
·47 lines (38 loc) · 746 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
echo "Building JobHunter"
cd jobhunter
mvn clean install
cd ..
echo "Building CareerBuilder plugin"
cd cb-plugin
mvn clean install
cd ..
echo "Building Dice.com plugin"
cd dice-plugin
mvn clean install
cd ..
echo "Building InfoEmpleo plugin"
cd infoempleo-plugin
mvn clean install
cd ..
# Must do it manually because of private key
# echo "Building InfoJobs plugin"
# cd infojobs-plugin
# mvn clean install
# cd ..
echo "Building Monster plugin"
cd monster-plugin
mvn clean install
cd ..
echo "Building craigslist plugin"
cd craigslist-plugin
mvn clean install
cd ..
echo "Building Stack Overflow Careers plugin"
cd socareers-plugin
mvn clean install
cd ..
echo "Assembling JobHunter"
cd jobhunter
mvn assembly:assembly
cd ..