pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>auth-service</artifactId>
  13. <packaging>jar</packaging>
  14. <name>Auth Service</name>
  15. <description>用户认证服务 - 注册、登录、Token管理</description>
  16. <dependencies>
  17. <!-- Spring Boot Web -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <!-- MyBatis Plus -->
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-boot-starter</artifactId>
  26. </dependency>
  27. <!-- Spring Boot Security -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <!-- Spring Security Web (for AccessDeniedException) -->
  33. <dependency>
  34. <groupId>org.springframework.security</groupId>
  35. <artifactId>spring-security-web</artifactId>
  36. </dependency>
  37. <!-- Spring Boot Data Redis -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-redis</artifactId>
  41. </dependency>
  42. <!-- PostgreSQL Driver -->
  43. <dependency>
  44. <groupId>org.postgresql</groupId>
  45. <artifactId>postgresql</artifactId>
  46. </dependency>
  47. <!-- Nacos Service Discovery -->
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  51. </dependency>
  52. <!-- Common Module -->
  53. <dependency>
  54. <groupId>com.lingyue</groupId>
  55. <artifactId>common</artifactId>
  56. </dependency>
  57. <!-- Lombok -->
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>