You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.0 KiB

2 weeks ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.ruoyi</groupId>
  6. <artifactId>ruoyi-common</artifactId>
  7. <version>3.6.3</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ruoyi-common-security</artifactId>
  11. <description>
  12. ruoyi-common-security安全模块
  13. </description>
  14. <dependencies>
  15. <!-- Spring Web -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-webmvc</artifactId>
  19. </dependency>
  20. <!-- RuoYi Api System -->
  21. <dependency>
  22. <groupId>com.ruoyi</groupId>
  23. <artifactId>ruoyi-api-system</artifactId>
  24. </dependency>
  25. <!-- RuoYi Common Redis-->
  26. <dependency>
  27. <groupId>com.ruoyi</groupId>
  28. <artifactId>ruoyi-common-redis</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.redisson</groupId>
  32. <artifactId>redisson-spring-boot-starter</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.security.oauth</groupId>
  38. <artifactId>spring-security-oauth2</artifactId>
  39. <version>2.5.2.RELEASE</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-security</artifactId>
  45. <version>2.2.5.RELEASE</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.security.oauth.boot</groupId>
  50. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  51. </dependency>
  52. </dependencies>
  53. </project>