Add maven script windows support
[nonrtric/plt/rappmanager.git] / README.md
1 # Rapp Manager (This is a prototype)
2 Rapp manager is an application which lifecycle manages the Rapp.
3
4 <mark>**Rapp packaging model used here is purely a prototype**</mark>
5
6 # Integration of ONAP ACM
7
8 ONAP ACM is used here as a backend of Rapp manager to lifecycle manage the deployment items as part of Rapp.
9
10 ONAP ACM related details can be found [here](https://docs.onap.org/projects/onap-policy-parent/en/london/clamp/clamp.html).
11
12
13 ## Maven Build
14
15 This build supports Linux and Windows environments.
16
17 In case of below error during the build in Windows environment,
18
19 ```
20 [INFO] --- exec-maven-plugin:3.1.0:exec (git submodule update) @ rapp-manager-sme ---
21 C:/Program Files/Git/mingw64/libexec/git-core\git-submodule: line 7: basename: command not found
22 C:/Program Files/Git/mingw64/libexec/git-core\git-submodule: line 7: sed: command not found
23 C:/Program Files/Git/mingw64/libexec/git-core\git-submodule: line 22: .: git-sh-setup: file not found
24 ```
25
26 It is necessary to append additional paths listed below to the <strong>System</strong> environment variable
27 named "<strong>PATH</strong>". These paths can vary based on the git installation location.
28
29 ```
30 C:\Program Files\Git\usr\bin
31 C:\Program Files\Git\mingw64\libexec\git-core
32 ```