diff --git a/pom.xml b/pom.xml
index ca8222bb..a4a59a2e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,6 +22,7 @@
virtual-patient-model
virtual-patient-web
virtual-patient-rasa
+ virtual-patient-manage
diff --git a/virtual-patient-manage/pom.xml b/virtual-patient-manage/pom.xml
new file mode 100644
index 00000000..46fecf9f
--- /dev/null
+++ b/virtual-patient-manage/pom.xml
@@ -0,0 +1,51 @@
+
+
+ 4.0.0
+
+ com.supervision
+ virtual-patient
+ 1.0-SNAPSHOT
+
+
+ virtual-patient-manage
+ virtual-patient-manage
+ jar
+
+
+
+
+ com.supervision
+ virtual-patient-model
+ ${project.version}
+
+
+
+ com.supervision
+ virtual-patient-common
+ ${project.version}
+
+
+
+
+ org.projectlombok
+ lombok
+ provided
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ paketobuildpacks/builder-jammy-base:latest
+
+
+
+
+
+
+
diff --git a/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java b/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java
new file mode 100644
index 00000000..a99e098a
--- /dev/null
+++ b/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java
@@ -0,0 +1,13 @@
+package com.supervision.manage;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class VirtualPatientManageApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(VirtualPatientManageApplication.class, args);
+ }
+
+}
diff --git a/virtual-patient-manage/src/main/resources/application.properties b/virtual-patient-manage/src/main/resources/application.properties
new file mode 100644
index 00000000..8b137891
--- /dev/null
+++ b/virtual-patient-manage/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/virtual-patient-web/pom.xml b/virtual-patient-web/pom.xml
index 67c7f60b..0d3bfcd5 100644
--- a/virtual-patient-web/pom.xml
+++ b/virtual-patient-web/pom.xml
@@ -30,10 +30,6 @@
${project.version}
-
- org.springframework.boot
- spring-boot-starter-websocket
-
org.freemarker
diff --git a/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java b/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java
index 7a4fcbf3..2332487e 100644
--- a/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java
+++ b/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java
@@ -1,11 +1,8 @@
package com.supervision;
import org.mybatis.spring.annotation.MapperScan;
-import org.mybatis.spring.annotation.MapperScans;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.web.socket.config.annotation.EnableWebSocket;
@SpringBootApplication
@MapperScan(basePackages = {"com.supervision.**.mapper"})