mirror of
https://gitee.com/xtoon/xtoon-cloud.git
synced 2026-05-12 02:12:39 +00:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>xtoon-common</artifactId>
|
|
<groupId>com.xtoon.cloud</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>xtoon-common-mybatis</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>mybatis通用模块</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.xtoon.cloud</groupId>
|
|
<artifactId>xtoon-common-core</artifactId>
|
|
<version>${xtoon-cloud.version}</version>
|
|
</dependency>
|
|
<!--数据库-->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
<!--mybatis-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |