48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<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.landaiqing</groupId>
|
|
<artifactId>sms-auth</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>sms-auth-infra</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sms-auth-infra</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
<!--jdbcStarter-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
<version>2.4.2</version>
|
|
</dependency>
|
|
<!--druid连接池-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>1.1.21</version>
|
|
</dependency>
|
|
<!--mysql-->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.33</version>
|
|
</dependency>
|
|
<!--mybatis plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.landaiqing</groupId>
|
|
<artifactId>sms-auth-common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|