| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.jzg</groupId>
- <artifactId>tenant</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>insurance</artifactId>
- <packaging>pom</packaging>
- <name>insurance Maven Webapp</name>
- <url>http://maven.apache.org</url>
- <modules>
- <module>quotation-commons</module>
- <module>quotation-summary</module>
- <module>quotation-dajia</module>
- <module>quotation-dadi</module>
- <module>quotation-zhongmei</module>
- <module>quotation-zijin</module>
- <module>quotation-bohai</module>
- <module>quotation-chengtai</module>
- <module>quotation-taiping</module>
- <module>quotation-taipingyang</module>
- <module>quotation-shenneng</module>
- <module>quotation-yongcheng</module>
- <module>quotation-huatai</module>
- <module>quotation-yangguang</module>
- <module>quotation-guoren</module>
- <module>quotation-huanong</module>
- <module>quotation-taikang</module>
- <module>quotation-ansheng</module>
- <module>quotation-hengbang</module>
- <module>quotation-zhongan</module>
- <module>quotation-taishan</module>
- <module>quotation-renbao</module>
- <module>quotation-renbaonew</module>
- <module>quotation-guoshou</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-webflux</artifactId>
- <version>3.0.0</version>
- </dependency>
- <dependency>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-crypto</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-mongodb</artifactId>
- </dependency>
- <!-- 负载均衡器 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-loadbalancer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-loadbalancer</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>insurance</finalName>
- </build>
- </project>
|