From 1f76c004fb1fb7869669efaeae48935604c8818e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E6=BE=B3=E5=B9=B3?= Date: Sat, 25 Mar 2023 02:15:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 0 -> 6148 bytes .idea/.gitignore | 8 ++ .idea/compiler.xml | 26 +++++ .idea/encodings.xml | 17 +++ .idea/jarRepositories.xml | 25 +++++ .idea/misc.xml | 27 +++++ .idea/modules.xml | 8 ++ MyCarinsurance.iml | 8 ++ claims-management/pom.xml | 29 ++++++ .../src/main/webapp/WEB-INF/web.xml | 7 ++ claims-management/src/main/webapp/index.jsp | 5 + customer-management/pom.xml | 29 ++++++ .../src/main/webapp/WEB-INF/web.xml | 7 ++ customer-management/src/main/webapp/index.jsp | 5 + danger-management/pom.xml | 29 ++++++ .../src/main/webapp/WEB-INF/web.xml | 7 ++ danger-management/src/main/webapp/index.jsp | 5 + guarantee-management/pom.xml | 29 ++++++ .../src/main/webapp/WEB-INF/web.xml | 7 ++ .../src/main/webapp/index.jsp | 5 + parent/pom.xml | 98 ++++++++++++++++++ survey-loss-management/pom.xml | 29 ++++++ .../src/main/webapp/WEB-INF/web.xml | 7 ++ .../src/main/webapp/index.jsp | 5 + 24 files changed, 422 insertions(+) create mode 100644 .DS_Store create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 MyCarinsurance.iml create mode 100644 claims-management/pom.xml create mode 100644 claims-management/src/main/webapp/WEB-INF/web.xml create mode 100644 claims-management/src/main/webapp/index.jsp create mode 100644 customer-management/pom.xml create mode 100644 customer-management/src/main/webapp/WEB-INF/web.xml create mode 100644 customer-management/src/main/webapp/index.jsp create mode 100644 danger-management/pom.xml create mode 100644 danger-management/src/main/webapp/WEB-INF/web.xml create mode 100644 danger-management/src/main/webapp/index.jsp create mode 100644 guarantee-management/pom.xml create mode 100644 guarantee-management/src/main/webapp/WEB-INF/web.xml create mode 100644 guarantee-management/src/main/webapp/index.jsp create mode 100644 parent/pom.xml create mode 100644 survey-loss-management/pom.xml create mode 100644 survey-loss-management/src/main/webapp/WEB-INF/web.xml create mode 100644 survey-loss-management/src/main/webapp/index.jsp diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..182ae0c --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..4a8c877 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..05537ce --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..05452d1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/MyCarinsurance.iml b/MyCarinsurance.iml new file mode 100644 index 0000000..9a5cfce --- /dev/null +++ b/MyCarinsurance.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/claims-management/pom.xml b/claims-management/pom.xml new file mode 100644 index 0000000..9d288cf --- /dev/null +++ b/claims-management/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + com.mycarinsurance.www + claims-management + 1.0-SNAPSHOT + war + + claims-management Maven Webapp + + http://www.example.com + + + parent + com.mycarinsurance.www + 1.0-SNAPSHOT + ../parent/pom.xml + + + + UTF-8 + 1.7 + 1.7 + + + diff --git a/claims-management/src/main/webapp/WEB-INF/web.xml b/claims-management/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/claims-management/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/claims-management/src/main/webapp/index.jsp b/claims-management/src/main/webapp/index.jsp new file mode 100644 index 0000000..c38169b --- /dev/null +++ b/claims-management/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git a/customer-management/pom.xml b/customer-management/pom.xml new file mode 100644 index 0000000..5bcd9fc --- /dev/null +++ b/customer-management/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + com.mycarinsurance.www + customer-management + 1.0-SNAPSHOT + war + + customer-management Maven Webapp + + http://www.example.com + + + parent + com.mycarinsurance.www + 1.0-SNAPSHOT + ../parent/pom.xml + + + + UTF-8 + 1.7 + 1.7 + + + diff --git a/customer-management/src/main/webapp/WEB-INF/web.xml b/customer-management/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/customer-management/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/customer-management/src/main/webapp/index.jsp b/customer-management/src/main/webapp/index.jsp new file mode 100644 index 0000000..c38169b --- /dev/null +++ b/customer-management/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git a/danger-management/pom.xml b/danger-management/pom.xml new file mode 100644 index 0000000..9a6fcb5 --- /dev/null +++ b/danger-management/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + com.mycarinsurance.www + danger-management + 1.0-SNAPSHOT + war + + danger-management Maven Webapp + + http://www.example.com + + + parent + com.mycarinsurance.www + 1.0-SNAPSHOT + ../parent/pom.xml + + + + UTF-8 + 1.7 + 1.7 + + + diff --git a/danger-management/src/main/webapp/WEB-INF/web.xml b/danger-management/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/danger-management/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/danger-management/src/main/webapp/index.jsp b/danger-management/src/main/webapp/index.jsp new file mode 100644 index 0000000..c38169b --- /dev/null +++ b/danger-management/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git a/guarantee-management/pom.xml b/guarantee-management/pom.xml new file mode 100644 index 0000000..d561a39 --- /dev/null +++ b/guarantee-management/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + com.mycarinsurance.www + guarantee-management + 1.0-SNAPSHOT + war + + guarantee-management Maven Webapp + + http://www.example.com + + + parent + com.mycarinsurance.www + 1.0-SNAPSHOT + ../parent/pom.xml + + + + UTF-8 + 1.7 + 1.7 + + + diff --git a/guarantee-management/src/main/webapp/WEB-INF/web.xml b/guarantee-management/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/guarantee-management/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/guarantee-management/src/main/webapp/index.jsp b/guarantee-management/src/main/webapp/index.jsp new file mode 100644 index 0000000..c38169b --- /dev/null +++ b/guarantee-management/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git a/parent/pom.xml b/parent/pom.xml new file mode 100644 index 0000000..36706c1 --- /dev/null +++ b/parent/pom.xml @@ -0,0 +1,98 @@ + + + + 4.0.0 + + com.mycarinsurance.www + parent + 1.0-SNAPSHOT + pom + + parent + + http://www.example.com + + + UTF-8 + 1.8 + 1.8 + + + + org.springframework.boot + spring-boot-starter-parent + 2.6.3 + + + + + junit + junit + 4.11 + test + + + + com.alibaba.cloud + spring-cloud-alibaba-dependencies + 2021.0.1.0 + pom + import + + + + org.springframework.cloud + spring-cloud-dependencies + 2021.0.1 + pom + import + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + diff --git a/survey-loss-management/pom.xml b/survey-loss-management/pom.xml new file mode 100644 index 0000000..58c07c1 --- /dev/null +++ b/survey-loss-management/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + com.mycarinsurance.www + survey-loss-management + 1.0-SNAPSHOT + war + + survey-loss-management Maven Webapp + + http://www.example.com + + + parent + com.mycarinsurance.www + 1.0-SNAPSHOT + ../parent/pom.xml + + + + UTF-8 + 1.7 + 1.7 + + + diff --git a/survey-loss-management/src/main/webapp/WEB-INF/web.xml b/survey-loss-management/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/survey-loss-management/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/survey-loss-management/src/main/webapp/index.jsp b/survey-loss-management/src/main/webapp/index.jsp new file mode 100644 index 0000000..c38169b --- /dev/null +++ b/survey-loss-management/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +

Hello World!

+ + -- 2.22.0