Add initial version of code

Initial version of rapp manager code added.

Issue-ID: NONRTRIC-872
Signed-off-by: aravind.est <aravindhan.a@est.tech>
Change-Id: I124b20a0790ba701d32089b66f81fc8b4e647e79
diff --git a/pom.xml b/pom.xml
new file mode 100755
index 0000000..d1f051e
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-parent</artifactId>
+        <version>3.0.6</version>
+    </parent>
+    <groupId>com.oransc</groupId>
+    <artifactId>rappmanager</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>rappmanager</name>
+    <description>Rapp Manager(ACM) in ORANSC</description>
+    <modules>
+        <module>rapp-manager-models</module>
+        <module>rapp-manager-acm</module>
+        <module>rapp-manager-sme</module>
+        <module>rapp-manager-application</module>
+    </modules>
+    <properties>
+        <java.version>17</java.version>
+        <openapi.maven.version>6.6.0</openapi.maven.version>
+    </properties>
+</project>