pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>cn.iocoder.boot</groupId>
  7. <artifactId>byzs-framework</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>byzs-spring-boot-starter-web</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>Web 框架,全局异常、API 日志、脱敏、错误码等</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.iocoder.boot</groupId>
  19. <artifactId>byzs-common</artifactId>
  20. </dependency>
  21. <!-- Web 相关 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <!-- WebFlux 相关,用于 WebClient -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-webflux</artifactId>
  30. </dependency>
  31. <!-- Reactor Netty 相关,WebClient 的底层实现 -->
  32. <dependency>
  33. <groupId>io.projectreactor.netty</groupId>
  34. <artifactId>reactor-netty</artifactId>
  35. </dependency>
  36. <!-- spring boot 配置所需依赖 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.aspectj</groupId>
  44. <artifactId>aspectjweaver</artifactId>
  45. <scope>provided</scope> <!-- 解决工具类 SpringExpressionUtils 加载的时候访问不到 org.aspectj.lang.JoinPoint 问题 -->
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.xingfudeshi</groupId>
  49. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springdoc</groupId>
  53. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.security</groupId>
  57. <artifactId>spring-security-core</artifactId>
  58. <scope>provided</scope> <!-- 设置为 provided,主要是 GlobalExceptionHandler 使用 -->
  59. </dependency>
  60. <!-- xss -->
  61. <dependency>
  62. <groupId>org.jsoup</groupId>
  63. <artifactId>jsoup</artifactId>
  64. </dependency>
  65. <!-- Test 测试相关 -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.mockito</groupId>
  73. <artifactId>mockito-inline</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. </project>