| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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.kym</groupId>
- <artifactId>car-wash</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>car-wash-mapper</artifactId>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.kym</groupId>
- <artifactId>car-wash-entity</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>3.5.7</version>
- </dependency>
- <!-- 代码生成使用 -->
- <dependency>
- <groupId>org.freemarker</groupId>
- <artifactId>freemarker</artifactId>
- <version>2.3.32</version>
- </dependency>
- <!-- 多数据源配置 -->
- <!-- <dependency>-->
- <!-- <groupId>com.baomidou</groupId>-->
- <!-- <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>-->
- <!-- <version>4.1.3</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba</groupId>-->
- <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
- <!-- <version>1.2.20</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </project>
|