2020-12-11 10:18:48 +00:00
|
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>kernel-d-db</artifactId>
|
2021-11-25 01:57:50 +00:00
|
|
|
|
<version>7.1.6</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>db-api</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- mybatis-plus dao框架 -->
|
|
|
|
|
<!-- 基础实体,分页参数和结果的创建,需要用到mp的注解和类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- servlet库 -->
|
|
|
|
|
<!-- PageFactory类会从http请求获取分页参数 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--数据库连接池,项目默认采用druid,用别的连接池可以排除这个包-->
|
|
|
|
|
<!--druid数据源的创建,需要用到本包-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-01-10 05:43:42 +00:00
|
|
|
|
<!--config模块的api-->
|
|
|
|
|
<!--数据源配置要放到容器里-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>config-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-01-10 05:43:42 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|