From 41be1e81711b61f5fa20a862ab7fd4aa635dd6e4 Mon Sep 17 00:00:00 2001 From: ZhangXushuo <3508242435.com> Date: Wed, 1 Nov 2023 14:59:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=961?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 38 +++++++++ .idea/encodings.xml | 13 +++ .idea/misc.xml | 20 +++++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 80 +++++++++++++++++++ february-health-common/.gitignore | 38 +++++++++ february-health-common/pom.xml | 67 ++++++++++++++++ .../src/main/java/com/february/Main.java | 7 ++ february-health-remote/.gitignore | 38 +++++++++ february-health-remote/pom.xml | 26 ++++++ .../src/main/java/com/february/Main.java | 7 ++ february-health-server/.gitignore | 38 +++++++++ february-health-server/pom.xml | 70 ++++++++++++++++ .../src/main/java/com/february/Main.java | 7 ++ pom.xml | 36 +++++++++ 15 files changed, 491 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 february-health-common/.gitignore create mode 100644 february-health-common/pom.xml create mode 100644 february-health-common/src/main/java/com/february/Main.java create mode 100644 february-health-remote/.gitignore create mode 100644 february-health-remote/pom.xml create mode 100644 february-health-remote/src/main/java/com/february/Main.java create mode 100644 february-health-server/.gitignore create mode 100644 february-health-server/pom.xml create mode 100644 february-health-server/src/main/java/com/february/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/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..bce0b63 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..539245f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..0ba1d1f --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 1698798673714 + + + + + + \ No newline at end of file diff --git a/february-health-common/.gitignore b/february-health-common/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/february-health-common/.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/february-health-common/pom.xml b/february-health-common/pom.xml new file mode 100644 index 0000000..936c7d2 --- /dev/null +++ b/february-health-common/pom.xml @@ -0,0 +1,67 @@ + + + + com.february + february-modules-health + 3.6.3 + + + 3.6.3 + february-health-common + + + 20 + 20 + UTF-8 + + 4.0.0 + + + + + com.alibaba.cloud + spring-cloud-starter-alibaba-nacos-discovery + + + + + com.alibaba.cloud + spring-cloud-starter-alibaba-nacos-config + + + + + com.alibaba.cloud + spring-cloud-starter-alibaba-sentinel + + + + + org.springframework.boot + spring-boot-starter-actuator + + + + + io.springfox + springfox-swagger-ui + ${swagger.fox.version} + + + + + com.mysql + mysql-connector-j + + + + + com.february + february-common-swagger + 3.6.3 + + + + diff --git a/february-health-common/src/main/java/com/february/Main.java b/february-health-common/src/main/java/com/february/Main.java new file mode 100644 index 0000000..a83e737 --- /dev/null +++ b/february-health-common/src/main/java/com/february/Main.java @@ -0,0 +1,7 @@ +package com.february; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/february-health-remote/.gitignore b/february-health-remote/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/february-health-remote/.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/february-health-remote/pom.xml b/february-health-remote/pom.xml new file mode 100644 index 0000000..a72f4a5 --- /dev/null +++ b/february-health-remote/pom.xml @@ -0,0 +1,26 @@ + + + 4.0.0 + + com.february + february-modules-health + 3.6.3 + + 3.6.3 + february-health-remote + + + 20 + 20 + UTF-8 + + + + com.february + february-health-common + 3.6.3 + + + diff --git a/february-health-remote/src/main/java/com/february/Main.java b/february-health-remote/src/main/java/com/february/Main.java new file mode 100644 index 0000000..a83e737 --- /dev/null +++ b/february-health-remote/src/main/java/com/february/Main.java @@ -0,0 +1,7 @@ +package com.february; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/february-health-server/.gitignore b/february-health-server/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/february-health-server/.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/february-health-server/pom.xml b/february-health-server/pom.xml new file mode 100644 index 0000000..62c878a --- /dev/null +++ b/february-health-server/pom.xml @@ -0,0 +1,70 @@ + + + 4.0.0 + + com.february + february-modules-health + 3.6.3 + + com.february + 3.6.3 + february-health-server + + + 20 + 20 + UTF-8 + + + + + com.february + february-health-remote + 3.6.3 + compile + + + com.february + february-health-remote + 3.6.3 + compile + + + + com.february + february-common-log + 3.6.3 + + + + com.february + february-common-datascope + 3.6.3 + + + + com.february + february-common-datasource + 3.6.3 + + + + + ${project.artifactId} + + + org.springframework.boot + spring-boot-maven-plugin + + + + repackage + + + + + + + diff --git a/february-health-server/src/main/java/com/february/Main.java b/february-health-server/src/main/java/com/february/Main.java new file mode 100644 index 0000000..a83e737 --- /dev/null +++ b/february-health-server/src/main/java/com/february/Main.java @@ -0,0 +1,7 @@ +package com.february; + +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..d10b1cf --- /dev/null +++ b/pom.xml @@ -0,0 +1,36 @@ + + + + com.february + february-modules + 3.6.3 + + + + 4.0.0 + 3.6.3 + + + february-health-common + february-health-remote + february-health-server + + + february-modules-health + pom + + + february-modules-health健康模块 + + + + + + maven-releases + maven-releases + http://10.100.1.6:8081/repository/maven-releases/ + + +