pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <version>2.5.4</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-generator</artifactId>
  46. <version>${mybatis-plus.version}</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus-generator</artifactId>
  52. <version>${mybatis-plus.version}</version>
  53. </dependency>
  54. <!--mysql-->
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <version>5.1.47</version>
  59. <scope>runtime</scope>
  60. </dependency>
  61. <!-- druid -->
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid-spring-boot-starter</artifactId>
  65. </dependency>
  66. <!-- 动态数据源 -->
  67. <dependency>
  68. <groupId>com.baomidou</groupId>
  69. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  70. <version>2.5.4</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-aop</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>