2022-09-18 19:08:23 +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">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>zyjblogs-parent</artifactId>
|
|
|
|
|
<groupId>cn.zyjblogs</groupId>
|
2023-02-21 15:33:17 +08:00
|
|
|
|
<version>1.0.0</version>
|
2022-09-18 19:08:23 +08:00
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>cn.zyjblogs.starter</groupId>
|
|
|
|
|
<artifactId>zyjblogs-mybatisplus-spring-boot-starter</artifactId>
|
2023-02-21 15:33:17 +08:00
|
|
|
|
<version>1.0.0</version>
|
2022-09-20 22:22:22 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2022-09-18 19:08:23 +08:00
|
|
|
|
<properties>
|
2022-11-15 13:16:06 +08:00
|
|
|
|
<maven.compiler.source>15</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>15</maven.compiler.target>
|
2022-10-15 14:09:41 +08:00
|
|
|
|
<!--编译编码-->
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-09-18 19:08:23 +08:00
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 集成spring-boot自动装配依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 集成spring-boot,配置文件属性处理依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
2022-09-21 20:14:03 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
</dependency>
|
2022-09-18 19:08:23 +08:00
|
|
|
|
<dependency>
|
2022-11-15 20:58:07 +08:00
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2022-09-18 19:08:23 +08:00
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
</dependency>
|
2022-09-23 01:00:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
|
|
|
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis-typehandlers-jsr310</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-09-18 19:08:23 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|