| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-business</artifactId>
- <version>3.0.1-Beta-21</version>
- </parent>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>business-mobile-gateway</artifactId>
- <version>3.0.1-Beta-21</version>
- <description>移动端网关 - 为APP/小程序/H5提供统一接口</description>
- <properties>
- <maven.compiler.target>21</maven.compiler.target>
- <maven.compiler.source>21</maven.compiler.source>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-member-auth</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-security</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>business-member-bean</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>business-member-application</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-sms</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-mail</artifactId>
- </dependency>
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|