| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?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>com.example</groupId>
- <artifactId>webapidemo</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>webapidemo-api</artifactId>
- <description>webapidemo-api</description>
- <properties>
- <java.version>1.8</java.version>
- <webapi.version>1.0.0</webapi.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>com.example</groupId>
- <artifactId>webapidemo-service</artifactId>
- <version>${webapi.version}</version>
- </dependency>
- <dependency>
- <groupId>com.example</groupId>
- <artifactId>webapidemo-mapper</artifactId>
- <version>${webapi.version}</version>
- </dependency>
- <dependency>
- <groupId>com.example</groupId>
- <artifactId>webapidemo-entity</artifactId>
- <version>${webapi.version}</version>
- </dependency>
- <dependency>
- <groupId>com.example</groupId>
- <artifactId>webapidemo-util</artifactId>
- <version>${webapi.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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <version>2.4.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.22</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.apache.shardingsphere</groupId>-->
- <!-- <artifactId>sharding-jdbc-spring-boot-starter</artifactId>-->
- <!-- <version>4.1.1</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.shardingsphere</groupId>-->
- <!-- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>-->
- <!-- <version>5.1.1</version>-->
- <!-- </dependency>-->
- <!-- 达梦驱动 -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>8.1.1.193</version>
- </dependency>
- <dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>1.6.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|