pom.xml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.yihu</groupId>
  8. <artifactId>jkzl-start</artifactId>
  9. <version>1.0.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>common-security-starter</artifactId>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-oauth2</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-configuration-processor</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-security</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-autoconfigure</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-redis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-aop</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.security</groupId>
  41. <artifactId>spring-security-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.security</groupId>
  45. <artifactId>spring-security-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.security</groupId>
  49. <artifactId>spring-security-config</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.security.oauth</groupId>
  53. <artifactId>spring-security-oauth2</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-collections</groupId>
  57. <artifactId>commons-collections</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-codec</groupId>
  61. <artifactId>commons-codec</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>net.sf.json-lib</groupId>
  65. <artifactId>json-lib</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-lang</groupId>
  69. <artifactId>commons-lang</artifactId>
  70. <version>2.6</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cglib</groupId>
  74. <artifactId>cglib</artifactId>
  75. <version>3.2.5</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.social</groupId>
  79. <artifactId>spring-social-config</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.social</groupId>
  83. <artifactId>spring-social-core</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.social</groupId>
  87. <artifactId>spring-social-security</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.social</groupId>
  91. <artifactId>spring-social-web</artifactId>
  92. </dependency>
  93. </dependencies>
  94. </project>