pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <artifactId>tingshu-parent</artifactId>
  7. <groupId>com.atguigu.tingshu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modules>
  11. <module>service-album-client</module>
  12. <module>service-user-client</module>
  13. <module>service-account-client</module>
  14. <module>service-order-client</module>
  15. <module>service-search-client</module>
  16. </modules>
  17. <artifactId>service-client</artifactId>
  18. <packaging>pom</packaging>
  19. <version>1.0</version>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.atguigu.tingshu</groupId>
  23. <artifactId>common-util</artifactId>
  24. <version>1.0</version>
  25. <scope>provided </scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.atguigu.tingshu</groupId>
  29. <artifactId>model</artifactId>
  30. <version>1.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <scope>provided </scope>
  36. </dependency>
  37. <!-- 服务调用feign -->
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-openfeign</artifactId>
  41. <scope>provided </scope>
  42. </dependency>
  43. </dependencies>
  44. </project>