pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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>io.jsonwebtoken</groupId>
  28. <artifactId>jjwt</artifactId>
  29. <version>0.12.5</version>
  30. </dependency>
  31. <!-- 客户端 -->
  32. <dependency>
  33. <groupId>com.github.microservice.auth</groupId>
  34. <artifactId>AuthClient</artifactId>
  35. <version>${project.version}</version>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.springframework.security</groupId>
  39. <artifactId>spring-security-web</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>org.springframework.security</groupId>
  43. <artifactId>spring-security-config</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.microservice.components</groupId>
  49. <artifactId>RedisData</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.microservice.components</groupId>
  54. <artifactId>MongodbData</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-security</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.security</groupId>
  63. <artifactId>spring-security-oauth2-core</artifactId>
  64. </dependency>
  65. <!-- <dependency>-->
  66. <!-- <groupId>org.springframework.security</groupId>-->
  67. <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
  68. <!-- </dependency>-->
  69. <!-- <dependency>-->
  70. <!-- <groupId>org.springframework.boot</groupId>-->
  71. <!-- <artifactId>spring-boot-starter-oauth2-authorization-server</artifactId>-->
  72. <!-- </dependency>-->
  73. <!-- <dependency>-->
  74. <!-- <groupId>org.springframework.cloud</groupId>-->
  75. <!-- <artifactId>spring-cloud-starter-oauth2</artifactId>-->
  76. <!-- <version>2.2.5.RELEASE</version>-->
  77. <!-- </dependency>-->
  78. <!-- <dependency>-->
  79. <!-- <groupId>org.springframework.security.experimental</groupId>-->
  80. <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
  81. <!-- <version>${spring-security-oauth2-authorization-server.version}</version>-->
  82. <!-- </dependency>-->
  83. <dependency>
  84. <groupId>com.sun.xml.bind</groupId>
  85. <artifactId>jaxb-impl</artifactId>
  86. <version>4.0.4</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.jsonwebtoken</groupId>
  94. <artifactId>jjwt-api</artifactId>
  95. <version>0.12.5</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.jsonwebtoken</groupId>
  99. <artifactId>jjwt-impl</artifactId>
  100. <version>0.12.5</version>
  101. <scope>runtime</scope>
  102. </dependency>
  103. </dependencies>
  104. <!--构建-->
  105. </project>