pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.lingyue</groupId>
  9. <artifactId>lingyue-zhibao</artifactId>
  10. <version>2.0.0</version>
  11. </parent>
  12. <artifactId>lingyue-common</artifactId>
  13. <packaging>jar</packaging>
  14. <description>公共模块 - 工具类、安全、异常、基类</description>
  15. <dependencies>
  16. <!-- Spring Boot Autoconfigure (for @ConditionalOnClass etc.) -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-autoconfigure</artifactId>
  20. </dependency>
  21. <!-- Spring Boot Web (provided, let consumers decide) -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <optional>true</optional>
  26. </dependency>
  27. <!-- Spring Security -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <!-- Spring Data Redis -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <!-- MyBatis Plus -->
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <!-- JWT -->
  46. <dependency>
  47. <groupId>io.jsonwebtoken</groupId>
  48. <artifactId>jjwt-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.jsonwebtoken</groupId>
  52. <artifactId>jjwt-impl</artifactId>
  53. <scope>runtime</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.jsonwebtoken</groupId>
  57. <artifactId>jjwt-jackson</artifactId>
  58. <scope>runtime</scope>
  59. </dependency>
  60. <!-- Knife4j -->
  61. <dependency>
  62. <groupId>com.github.xiaoymin</groupId>
  63. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <!-- Hutool -->
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. </dependency>
  71. <!-- Lombok -->
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. </dependency>
  76. <!-- Validation -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-validation</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. </dependencies>
  83. </project>