pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.example</groupId>
  12. <artifactId>auth</artifactId>
  13. <name>auth</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. <!-- 权限中心客户端-->
  27. <dependency>
  28. <groupId>com.github.microservice.auth</groupId>
  29. <artifactId>AuthClient</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.microservice.components</groupId>
  34. <artifactId>Swagger2</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. </dependencies>
  38. </project>