pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.dongzili</groupId>
  8. <artifactId>springcloud-base</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>entity</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!-- <dependency>-->
  19. <!-- <groupId>com.mysql</groupId>-->
  20. <!-- <artifactId>mysql-connector-j</artifactId>-->
  21. <!-- <scope>runtime</scope>-->
  22. <!-- </dependency>-->
  23. <!-- mybatis plus -->
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-boot-starter</artifactId>
  27. <version>${mybatis-plus.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mybatis</groupId>
  31. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  32. <version>${mybatis-typehandlers.version}</version>
  33. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>cn.hutool</groupId>-->
  36. <!-- <artifactId>hutool-all</artifactId>-->
  37. <!-- <version>5.8.25</version>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>net.bytebuddy</groupId>-->
  41. <!-- <artifactId>byte-buddy</artifactId>-->
  42. <!-- <version>1.15.10</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  47. <version>${dynamic-datasource.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-validation</artifactId>
  52. <version>${validation.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </project>