| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-pharmacy</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>zhijiayun-gateway</artifactId>
- <version>1.0.0</version>
- <name>zhijiayun-gateway</name>
- <description>智价云(药店版)-统一对外服务网关(所有请求入口)</description>
- <dependencies>
- <!-- ========== 业务服务模块(按需引入,版本独立迭代) ========== -->
- <!-- 用户管理模块 -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-user</artifactId>
- </dependency>
- <!-- 支付模块 -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-payment</artifactId>
- </dependency>
- <!-- 邀请码模块 -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-invite</artifactId>
- </dependency>
- <!-- ========== 公共基础 ========== -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-common</artifactId>
- </dependency>
- <!-- Web 基础(全局异常处理、请求转发) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <!-- Security(全局安全拦截) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- <!-- Redis(网关限流) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <!-- Test -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- H2 内存数据库(测试用) -->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- 打包为可执行 JAR -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|