pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jzg</groupId>
  6. <artifactId>tenant</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>insurance</artifactId>
  10. <packaging>pom</packaging>
  11. <name>insurance Maven Webapp</name>
  12. <url>http://maven.apache.org</url>
  13. <modules>
  14. <module>quotation-commons</module>
  15. <module>quotation-summary</module>
  16. <module>quotation-dajia</module>
  17. <module>quotation-dadi</module>
  18. <module>quotation-zhongmei</module>
  19. <module>quotation-zijin</module>
  20. <module>quotation-bohai</module>
  21. <module>quotation-chengtai</module>
  22. <module>quotation-taiping</module>
  23. <module>quotation-taipingyang</module>
  24. <module>quotation-shenneng</module>
  25. <module>quotation-yongcheng</module>
  26. <module>quotation-huatai</module>
  27. <module>quotation-yangguang</module>
  28. <module>quotation-guoren</module>
  29. <module>quotation-huanong</module>
  30. <module>quotation-taikang</module>
  31. <module>quotation-ansheng</module>
  32. <module>quotation-hengbang</module>
  33. <module>quotation-zhongan</module>
  34. <module>quotation-taishan</module>
  35. <module>quotation-renbao</module>
  36. <module>quotation-renbaonew</module>
  37. <module>quotation-guoshou</module>
  38. </modules>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-webflux</artifactId>
  43. <version>3.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.projectreactor.netty</groupId>
  47. <artifactId>reactor-netty-core</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-crypto</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  56. </dependency>
  57. <!-- 负载均衡器 -->
  58. <dependency>
  59. <groupId>org.springframework.cloud</groupId>
  60. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-openfeign</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>insurance</finalName>
  73. </build>
  74. </project>