81 lines
2.7 KiB
XML
81 lines
2.7 KiB
XML
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>cn.bunny</groupId>
|
||
|
<artifactId>bunny-template</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>dao</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>model</name>
|
||
|
<url>https://maven.apache.org</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- lombok -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
</dependency>
|
||
|
<!-- hutool -->
|
||
|
<!-- hu tool -->
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
</dependency>
|
||
|
<!-- fastjson2 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.fastjson2</groupId>
|
||
|
<artifactId>fastjson2</artifactId>
|
||
|
</dependency>
|
||
|
<!--mysql-->
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
<!-- mysql连接池 -->
|
||
|
<dependency>
|
||
|
<groupId>com.zaxxer</groupId>
|
||
|
<artifactId>HikariCP</artifactId>
|
||
|
<version>5.1.0</version>
|
||
|
</dependency>
|
||
|
<!-- mybatis-plus -->
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
|
</dependency>
|
||
|
<!-- knife4j -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
<!-- spring-security -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
</dependency>
|
||
|
<!-- spring-security-test -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-test</artifactId>
|
||
|
</dependency>
|
||
|
<!-- spring-web -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 实体类注解 -->
|
||
|
<dependency>
|
||
|
<groupId>io.swagger</groupId>
|
||
|
<artifactId>swagger-annotations</artifactId>
|
||
|
<version>1.6.14</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|