pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.storlead.boot</groupId>
  8. <artifactId>storlead-framework</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-mybatis</artifactId>
  13. <packaging>jar</packaging>
  14. <name>${project.artifactId}</name>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.storlead.boot</groupId>
  18. <artifactId>storlead-common</artifactId>
  19. <version>1.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.storlead.boot</groupId>
  23. <artifactId>storlead-core</artifactId>
  24. <version>1.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.storlead.boot</groupId>
  28. <artifactId>storlead-auth</artifactId>
  29. <version>1.0</version>
  30. </dependency>
  31. <!-- mybatis-plus -->
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-boot-starter</artifactId>
  35. </dependency>
  36. <!-- 动态数据源 -->
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-generator</artifactId>
  45. </dependency>
  46. <!--mysql-->
  47. <dependency>
  48. <groupId>mysql</groupId>
  49. <artifactId>mysql-connector-java</artifactId>
  50. <version>5.1.47</version>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <!-- druid -->
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid-spring-boot-starter</artifactId>
  57. </dependency>
  58. <!-- 动态数据源 -->
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  62. <version>2.5.4</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-aop</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>