pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.yyjc.fbs</groupId>
  7. <artifactId>fbs-server-parent</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>fbs-server-dbservice</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.projectlombok</groupId>
  18. <artifactId>lombok</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.rocketmq</groupId>
  22. <artifactId>rocketmq-client</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.shardingsphere</groupId>
  34. <artifactId>sharding-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.shardingsphere</groupId>
  38. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.mapstruct</groupId>
  50. <artifactId>mapstruct</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>${project.parent.groupId}</groupId>
  58. <artifactId>fbs-server-common</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.yyjc.fbs</groupId>
  62. <artifactId>fbs-plugin-redis</artifactId>
  63. </dependency>
  64. <!-- xxl-job-core -->
  65. <dependency>
  66. <groupId>com.xuxueli</groupId>
  67. <artifactId>xxl-job-core</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.ctrip.framework.apollo</groupId>
  71. <artifactId>apollo-client</artifactId>
  72. </dependency>
  73. </dependencies>
  74. </project>