commit 749c1ad3078dda73dd8c1ff1d42c4d0cc43a57f0 Author: Saisai Liu <1374434128@qq.com> Date: Fri Jun 14 14:54:18 2024 +0800 feat():事件解析系统 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} + + +