pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>tingshu-parent</artifactId>
  7. <groupId>com.atguigu.tingshu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>service-album</module>
  15. <module>service-search</module>
  16. <module>service-account</module>
  17. <module>service-dispatch</module>
  18. <module>service-order</module>
  19. <module>service-payment</module>
  20. <module>service-user</module>
  21. </modules>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.atguigu.tingshu</groupId>
  25. <artifactId>service-util</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.atguigu.tingshu</groupId>
  30. <artifactId>service-account-client</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.atguigu.tingshu</groupId>
  35. <artifactId>service-album-client</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.atguigu.tingshu</groupId>
  40. <artifactId>service-order-client</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.atguigu.tingshu</groupId>
  45. <artifactId>service-user-client</artifactId>
  46. <version>1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.atguigu.tingshu</groupId>
  55. <artifactId>rabbit-util</artifactId>
  56. <version>1.0</version>
  57. </dependency>
  58. </dependencies>
  59. </project>