From be792ff35decb7337d73da9b162ae7037cfd6d2c Mon Sep 17 00:00:00 2001 From: zhangzq Date: Thu, 2 Apr 2026 11:02:32 +0800 Subject: [PATCH] =?UTF-8?q?init:=E5=A2=9E=E5=8A=A0common=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oms-common/pom.xml | 38 +++++++++++++++++++ .../org/nl/common/OmsCommonApplication.java | 13 +++++++ pom.xml | 1 + 3 files changed, 52 insertions(+) create mode 100644 oms-common/pom.xml create mode 100644 oms-common/src/main/java/org/nl/common/OmsCommonApplication.java 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