pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <parent>
  6. <groupId>com.unis</groupId>
  7. <artifactId>delivery-framework</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>delivery-spring-boot-starter-mybatis</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>数据库连接池、多数据源、事务、MyBatis 拓展</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.unis</groupId>
  19. <artifactId>delivery-common</artifactId>
  20. </dependency>
  21. <!-- Web 相关 -->
  22. <dependency>
  23. <groupId>com.unis</groupId>
  24. <artifactId>delivery-spring-boot-starter-web</artifactId>
  25. <scope>provided</scope> <!-- 设置为 provided,只有 OncePerRequestFilter 使用到 -->
  26. </dependency>
  27. <!-- DB 相关 -->
  28. <dependency>
  29. <groupId>com.mysql</groupId>
  30. <artifactId>mysql-connector-j</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.oracle.database.jdbc</groupId>
  35. <artifactId>ojdbc8</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.postgresql</groupId>
  40. <artifactId>postgresql</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.microsoft.sqlserver</groupId>
  45. <artifactId>mssql-jdbc</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.dameng</groupId>
  50. <artifactId>DmJdbcDriver18</artifactId>
  51. <!-- <optional>true</optional>-->
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid-spring-boot-starter</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-boot-starter</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <!-- 多数据源 -->
  64. </dependency>
  65. <dependency>
  66. <groupId>com.github.yulichang</groupId>
  67. <artifactId>mybatis-plus-join-boot-starter</artifactId> <!-- MyBatis 联表查询 -->
  68. </dependency>
  69. <dependency>
  70. <groupId>com.fhs-opensource</groupId> <!-- VO 数据翻译 -->
  71. <artifactId>easy-trans-spring-boot-starter</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fhs-opensource</groupId>
  75. <artifactId>easy-trans-mybatis-plus-extend</artifactId>
  76. </dependency>
  77. </dependencies>
  78. </project>