-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.sh
More file actions
34 lines (27 loc) · 845 Bytes
/
compile.sh
File metadata and controls
34 lines (27 loc) · 845 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
dci_common_classes=$(pwd)/dci-common-classes
registry_component=$(pwd)/registry-component
sp_system=$(pwd)/sp-system
cd $dci_common_classes
echo $(pwd)
mvn clean install -DskipTests
echo 'Building finished for dci-common-classes ---'
cd $sp_system
echo $(pwd)
mvn clean package -DskipTests
echo 'Building finished for sp_system'
cd $registry_component/auth-service
echo $(pwd)
mvn clean package -DskipTests
echo 'Building finished for auth-service'
cd $registry_component/national-gateway
echo $(pwd)
mvn clean package -DskipTests
echo 'Building finished for national-gateway'
cd $registry_component/service-registry
echo $(pwd)
mvn clean package -DskipTests
echo 'Building finished for service-registry'
cd $registry_component/connector-opencrvs
echo $(pwd)
mvn clean package -DskipTests
echo 'Building finished for connector-opencrvs'