pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>MSModule</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/MSModule</relativePath>
  10. </parent>
  11. <groupId>com.github.microservice.auth</groupId>
  12. <artifactId>AuthClient</artifactId>
  13. <name>AuthClient</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>org.springframework.security</groupId>-->
  28. <!-- <artifactId>spring-security-oauth2-client</artifactId>-->
  29. <!-- <version>${spring-security-core.version}</version>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>org.springframework.security</groupId>
  33. <artifactId>spring-security-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.security</groupId>
  37. <artifactId>spring-security-config</artifactId>
  38. </dependency>
  39. <!--缓存-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-cache</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.ben-manes.caffeine</groupId>
  46. <artifactId>caffeine</artifactId>
  47. </dependency>
  48. <!-- 文档 -->
  49. <dependency>
  50. <groupId>com.github.microservice.components</groupId>
  51. <artifactId>Swagger2</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </project>