pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-dependencies</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-security</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <properties>
  15. <framework-base.version>1.0.0-RELEASE</framework-base.version>
  16. <framework-redis.version>1.0.0-RELEASE</framework-redis.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.chelvc.framework</groupId>
  21. <artifactId>framework-base</artifactId>
  22. <version>${framework-base.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.chelvc.framework</groupId>
  26. <artifactId>framework-redis</artifactId>
  27. <version>${framework-redis.version}</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.security</groupId>
  32. <artifactId>spring-security-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.security</groupId>
  36. <artifactId>spring-security-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.security</groupId>
  40. <artifactId>spring-security-config</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.security</groupId>
  44. <artifactId>spring-security-jwt</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.security.oauth</groupId>
  48. <artifactId>spring-security-oauth2</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.security</groupId>
  52. <artifactId>spring-security-oauth2-jose</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.security</groupId>
  56. <artifactId>spring-security-oauth2-resource-server</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>