| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>api</groupId>
- <artifactId>zwrx-hb</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>zwrx-api</artifactId>
- <description>zxdt-api</description>
- <properties>
- <java.version>1.8</java.version>
- <api.version>1.0.0</api.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- mysql驱动 -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.28</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>zwrx-service</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>zwrx-mapper</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>zwrx-entity</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>zwrx-util</artifactId>
- <version>${api.version}</version>
- </dependency>
- <!-- 验证码 -->
- <dependency>
- <groupId>pro.fessional</groupId>
- <artifactId>kaptcha</artifactId>
- <version>2.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.9</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-xml</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.22</version>
- </dependency>
- <dependency>
- <groupId>com.getui.push</groupId>
- <artifactId>restful-sdk</artifactId>
- <version>1.0.3.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.apache.shardingsphere</groupId>-->
- <!-- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>-->
- <!-- <version>5.1.1</version>-->
- <!-- </dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|