From 749c1ad3078dda73dd8c1ff1d42c4d0cc43a57f0 Mon Sep 17 00:00:00 2001 From: Saisai Liu <1374434128@qq.com> Date: Fri, 14 Jun 2024 14:54:18 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=88=EF=BC=89=EF=BC=9A=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6=E8=A7=A3=E6=9E=90=E7=B3=BB=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 38 ++++++ .idea/.gitignore | 8 ++ .idea/encodings.xml | 14 ++ .idea/misc.xml | 14 ++ .idea/uiDesigner.xml | 124 ++++++++++++++++++ .idea/vcs.xml | 6 + mobai-event-common/pom.xml | 20 +++ mobai-event-modules/pom.xml | 20 +++ .../src/main/java/com/mobai/Main.java | 7 + mobai-event-remote/pom.xml | 20 +++ .../src/main/java/com/mobai/Main.java | 7 + pom.xml | 71 ++++++++++ 12 files changed, 349 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 mobai-event-common/pom.xml create mode 100644 mobai-event-modules/pom.xml create mode 100644 mobai-event-modules/src/main/java/com/mobai/Main.java create mode 100644 mobai-event-remote/pom.xml create mode 100644 mobai-event-remote/src/main/java/com/mobai/Main.java create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..989f68e --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..82dbec8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/mobai-event-common/pom.xml b/mobai-event-common/pom.xml new file mode 100644 index 0000000..003b18c --- /dev/null +++ b/mobai-event-common/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.mobai + event-analysis + 1.0-SNAPSHOT + + + mobai-event-common + + + 17 + 17 + UTF-8 + + + diff --git a/mobai-event-modules/pom.xml b/mobai-event-modules/pom.xml new file mode 100644 index 0000000..13f634f --- /dev/null +++ b/mobai-event-modules/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.mobai + event-analysis + 1.0-SNAPSHOT + + + mobai-event-modules + + + 17 + 17 + UTF-8 + + + diff --git a/mobai-event-modules/src/main/java/com/mobai/Main.java b/mobai-event-modules/src/main/java/com/mobai/Main.java new file mode 100644 index 0000000..a56227b --- /dev/null +++ b/mobai-event-modules/src/main/java/com/mobai/Main.java @@ -0,0 +1,7 @@ +package com.mobai; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/mobai-event-remote/pom.xml b/mobai-event-remote/pom.xml new file mode 100644 index 0000000..8929e8b --- /dev/null +++ b/mobai-event-remote/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.mobai + event-analysis + 1.0-SNAPSHOT + + + mobai-event-remote + + + 17 + 17 + UTF-8 + + + diff --git a/mobai-event-remote/src/main/java/com/mobai/Main.java b/mobai-event-remote/src/main/java/com/mobai/Main.java new file mode 100644 index 0000000..a56227b --- /dev/null +++ b/mobai-event-remote/src/main/java/com/mobai/Main.java @@ -0,0 +1,7 @@ +package com.mobai; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c595070 --- /dev/null +++ b/pom.xml @@ -0,0 +1,71 @@ + + + 4.0.0 + + com.mobai + event-analysis + 1.0-SNAPSHOT + pom + + mobai-event-common + mobai-event-modules + mobai-event-remote + + + + 17 + 17 + UTF-8 + 1.2.83 + 2.0.46 + + + + + + + org.springframework.boot + spring-boot-dependencies + 2.7.15 + pom + import + + + + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-amqp + + + + org.springframework.boot + spring-boot-starter-test + + + + com.alibaba + fastjson + ${fasejson.version} + + + + com.alibaba.fastjson2 + fastjson2 + ${fasejson2.version} + + +