pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>cn.vbdsm</groupId>
  8. <artifactId>VBDSM</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>vb-framework</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>framework框架核心</description>
  14. <dependencies>
  15. <!-- SpringBoot Web容器 -->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>spring-boot-starter-tomcat</artifactId>
  22. <groupId>org.springframework.boot</groupId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <!-- web 容器使用 undertow 性能更强 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-undertow</artifactId>
  30. </dependency>
  31. <!-- SpringBoot 拦截器 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-aop</artifactId>
  35. </dependency>
  36. <!-- shardingSphere 分库分表-->
  37. <dependency>
  38. <groupId>org.apache.shardingsphere</groupId>
  39. <artifactId>shardingsphere-jdbc-core</artifactId>
  40. </dependency>
  41. <!-- sql性能分析插件 -->
  42. <dependency>
  43. <groupId>p6spy</groupId>
  44. <artifactId>p6spy</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-actuator</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>de.codecentric</groupId>
  52. <artifactId>spring-boot-admin-starter-client</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>transmittable-thread-local</artifactId>
  57. </dependency>
  58. <!-- xxl-job-core -->
  59. <dependency>
  60. <groupId>com.xuxueli</groupId>
  61. <artifactId>xxl-job-core</artifactId>
  62. </dependency>
  63. <!-- 工具模块-->
  64. <dependency>
  65. <groupId>cn.vbdsm</groupId>
  66. <artifactId>vb-common</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>