pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.github.microservice</groupId>
  7. <artifactId>MSRunnable</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/MSRunnable</relativePath>
  10. </parent>
  11. <groupId>com.github.microservice.auth</groupId>
  12. <artifactId>AuthServer</artifactId>
  13. <name>AuthServer</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.microservice</groupId>
  17. <artifactId>PCore</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <!--应用中心客户端-->
  21. <dependency>
  22. <groupId>com.github.microservice.components</groupId>
  23. <artifactId>ApplicationClient</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.guava</groupId>
  28. <artifactId>guava</artifactId>
  29. <version>33.3.1-jre</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.jsonwebtoken</groupId>
  33. <artifactId>jjwt</artifactId>
  34. <version>0.12.5</version>
  35. </dependency>
  36. <!-- 客户端 -->
  37. <dependency>
  38. <groupId>com.github.microservice.auth</groupId>
  39. <artifactId>AuthClient</artifactId>
  40. <version>${project.version}</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.springframework.security</groupId>
  44. <artifactId>spring-security-web</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>org.springframework.security</groupId>
  48. <artifactId>spring-security-config</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.microservice.components</groupId>
  54. <artifactId>RedisData</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.microservice.components</groupId>
  59. <artifactId>MongodbData</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-security</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.security</groupId>
  68. <artifactId>spring-security-oauth2-core</artifactId>
  69. </dependency>
  70. <!-- <dependency>-->
  71. <!-- <groupId>org.springframework.security</groupId>-->
  72. <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
  73. <!-- </dependency>-->
  74. <!-- <dependency>-->
  75. <!-- <groupId>org.springframework.boot</groupId>-->
  76. <!-- <artifactId>spring-boot-starter-oauth2-authorization-server</artifactId>-->
  77. <!-- </dependency>-->
  78. <!-- <dependency>-->
  79. <!-- <groupId>org.springframework.cloud</groupId>-->
  80. <!-- <artifactId>spring-cloud-starter-oauth2</artifactId>-->
  81. <!-- <version>2.2.5.RELEASE</version>-->
  82. <!-- </dependency>-->
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.springframework.security.experimental</groupId>-->
  85. <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
  86. <!-- <version>${spring-security-oauth2-authorization-server.version}</version>-->
  87. <!-- </dependency>-->
  88. <dependency>
  89. <groupId>com.sun.xml.bind</groupId>
  90. <artifactId>jaxb-impl</artifactId>
  91. <version>4.0.4</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.jsonwebtoken</groupId>
  99. <artifactId>jjwt-api</artifactId>
  100. <version>0.12.5</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.jsonwebtoken</groupId>
  104. <artifactId>jjwt-impl</artifactId>
  105. <version>0.12.5</version>
  106. <scope>runtime</scope>
  107. </dependency>
  108. </dependencies>
  109. <!--构建-->
  110. </project>