roses/kernel-d-db/db-spring-boot-starter/pom.xml

44 lines
1.3 KiB
XML
Raw Normal View History

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>
2023-04-26 09:21:15 +00:00
<version>7.6.0</version>
2020-12-11 10:18:48 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>db-spring-boot-starter</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--mybatis-plus模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>db-sdk-mp</artifactId>
2021-05-14 14:11:05 +00:00
<version>${roses.version}</version>
2020-12-11 10:18:48 +00:00
</dependency>
<!--flyway数据同步-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>db-sdk-flyway</artifactId>
2021-05-14 14:11:05 +00:00
<version>${roses.version}</version>
</dependency>
<!--系统配置-自动装配-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>config-spring-boot-starter-memory</artifactId>
<version>${roses.version}</version>
</dependency>
2020-12-11 10:18:48 +00:00
</dependencies>
</project>