2024-10-30 10:02:55 +08: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>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>njcn-db</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<mybatis.version>2.1.3</mybatis.version>
|
|
|
|
|
|
<mybatis-plus.version>3.4.2</mybatis-plus.version>
|
|
|
|
|
|
<jeffrey-mybatis-plus.version>1.5.1-RELEASE</jeffrey-mybatis-plus.version>
|
2024-10-30 20:04:37 +08:00
|
|
|
|
<mybatis-plus-join.version>1.4.13</mybatis-plus-join.version>
|
2024-10-30 10:02:55 +08:00
|
|
|
|
<druid.version>1.2.5</druid.version>
|
|
|
|
|
|
<mysql.version>8.0.19</mysql.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--公共依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>njcn-common</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--mybatis基础工具-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<!-- 排除默认的 HikariCP 数据源 -->
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
<version>${mybatis.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--mybatis增强工具-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--mybatis-plus 额外补充功能-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.jeffreyning</groupId>
|
|
|
|
|
|
<artifactId>mybatisplus-plus</artifactId>
|
|
|
|
|
|
<version>${jeffrey-mybatis-plus.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2024-10-30 20:04:37 +08:00
|
|
|
|
<!-- mybatis-plus增强,增加多表join操作 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.yulichang</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
|
|
|
|
<version>${mybatis-plus-join.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2024-10-30 10:02:55 +08:00
|
|
|
|
<!--druid连接池-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-06-18 16:36:01 +08:00
|
|
|
|
<!--mariadb-->
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.mariadb.jdbc</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>mariadb-java-client</artifactId>-->
|
|
|
|
|
|
<!-- <version>3.3.2</version> -->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
2024-10-30 10:02:55 +08:00
|
|
|
|
<!--mysql驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-02-27 10:21:23 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
|
|
|
|
<version>2.3.12</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
2024-10-30 10:02:55 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|