diff --git a/oms-common/pom.xml b/oms-common/pom.xml
new file mode 100644
index 0000000..9cadb91
--- /dev/null
+++ b/oms-common/pom.xml
@@ -0,0 +1,38 @@
+
+
+ 4.0.0
+
+ org.nl
+ omsCloud
+ 0.0.1-SNAPSHOT
+ ../pom.xml
+
+ oms-common
+ 0.0.1-SNAPSHOT
+ oms-common
+
+ 17
+
+
+
+ org.springframework.boot
+ spring-boot-starter
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ true
+
+
+
+
+
+
diff --git a/oms-common/src/main/java/org/nl/common/OmsCommonApplication.java b/oms-common/src/main/java/org/nl/common/OmsCommonApplication.java
new file mode 100644
index 0000000..f546c48
--- /dev/null
+++ b/oms-common/src/main/java/org/nl/common/OmsCommonApplication.java
@@ -0,0 +1,13 @@
+package org.nl.common;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class OmsCommonApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(OmsCommonApplication.class, args);
+ }
+
+}
diff --git a/pom.xml b/pom.xml
index bc1cb4a..457a370 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,6 +28,7 @@
oms-gateway
oms-masterdata
oms-user
+ oms-common