pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.kym</groupId>
  8. <artifactId>car-wash</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>car-wash-mapper</artifactId>
  12. <properties>
  13. <maven.compiler.source>21</maven.compiler.source>
  14. <maven.compiler.target>21</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.kym</groupId>
  20. <artifactId>car-wash-entity</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-generator</artifactId>
  26. <version>3.5.7</version>
  27. </dependency>
  28. <!-- 代码生成使用 -->
  29. <dependency>
  30. <groupId>org.freemarker</groupId>
  31. <artifactId>freemarker</artifactId>
  32. <version>2.3.32</version>
  33. </dependency>
  34. <!-- 多数据源配置 -->
  35. <!-- <dependency>-->
  36. <!-- <groupId>com.baomidou</groupId>-->
  37. <!-- <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>-->
  38. <!-- <version>4.1.3</version>-->
  39. <!-- </dependency>-->
  40. <!-- <dependency>-->
  41. <!-- <groupId>com.alibaba</groupId>-->
  42. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  43. <!-- <version>1.2.20</version>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>com.mysql</groupId>
  47. <artifactId>mysql-connector-j</artifactId>
  48. <scope>runtime</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>