pom.xml 3.6 KB

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