-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild-develop.sh
More file actions
87 lines (68 loc) · 2.16 KB
/
Copy pathbuild-develop.sh
File metadata and controls
87 lines (68 loc) · 2.16 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Build the support tools
git clone https://github.com/API4KBs/maven-enforcer-rules.git
mvn clean install
git clone https://github.com/API4KBs/maven-cfg-archetype-plugin.git
mvn clean install
# Build the PIM artifacts
git clone https://github.com/API4KBs/api4kbs.git
git checkout develop
mvn clean install
# Build the KMDP platform
## Root BOM
git clone https://github.com/API4KBs/kmdp-bom.git
git checkout develop
mvn clean install
## Core Libraries
git clone https://github.com/API4KBs/kmdp-models.git
git checkout develop
mvn clean install
## Standard Models (BPM+, KNART, FHIR Utilities)
git clone https://github.com/API4KBs/kmdp-standard-models-impl.git
git checkout develop
mvn clean install
## OpenAPI Maven Archetype
git clone https://github.com/API4KBs/kmdp-archetype.git
git checkout develop
mvn clean install
## API Interface / Client / Server Modules
git clone https://github.com/API4KBs/kmdp-api.git
git checkout develop
mvn clean install -Prefresh
mvn clean install
## Knowledge Artifact Repository (server)
git clone https://github.com/API4KBs/kmdp-artifact-repository.git
git checkout develop
mvn clean install
## Language Transrepresentation (server)
git clone https://github.com/API4KBs/kmdp-language.git
git checkout develop
mvn clean install
## KnowledgeBase Construction (server)
git clone https://github.com/API4KBs/kmdp-knowledgebase-service.git
git checkout develop
mvn clean install
## Knowledge Reasoning (server)
git clone https://github.com/API4KBs/kmdp-reasoning-service.git
git checkout develop
mvn clean install
## Spring monitoring
https://github.com/API4KBs/kmdp-spring-monitoring.git
git checkout develop
mvn clean install
## Knowledge Asset Repository (server)
git clone https://github.com/API4KBs/kmdp-asset-repository.git
git checkout develop
mvn clean install
## Complex Operations
git clone https://github.com/API4KBs/kmdp-complex-ops-impl.git
git checkout develop
mvn clean install
# Examples and Demos
## API4KP Examples
git clone https://github.com/API4KBs/api4kp-examples.git
git checkout develop
mvn clean install
## Demo Terminology Server
git clone https://github.com/API4KBs/demo-terminology-service.git
git checkout develop
mvn clean install