| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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.dongzili</groupId>
- <artifactId>springcloud-base</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>entity</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>com.mysql</groupId>-->
- <!-- <artifactId>mysql-connector-j</artifactId>-->
- <!-- <scope>runtime</scope>-->
- <!-- </dependency>-->
- <!-- mybatis plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis-typehandlers-jsr310</artifactId>
- <version>${mybatis-typehandlers.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>cn.hutool</groupId>-->
- <!-- <artifactId>hutool-all</artifactId>-->
- <!-- <version>5.8.25</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>net.bytebuddy</groupId>-->
- <!-- <artifactId>byte-buddy</artifactId>-->
- <!-- <version>1.15.10</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>${dynamic-datasource.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <version>${validation.version}</version>
- </dependency>
- </dependencies>
- </project>
|