pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>net.logstash.logback</groupId>
  25. <artifactId>logstash-logback-encoder</artifactId>
  26. <version>5.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.atguigu.tingshu</groupId>
  30. <artifactId>service-util</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.atguigu.tingshu</groupId>
  35. <artifactId>service-account-client</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.atguigu.tingshu</groupId>
  40. <artifactId>service-album-client</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.atguigu.tingshu</groupId>
  45. <artifactId>service-order-client</artifactId>
  46. <version>1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.atguigu.tingshu</groupId>
  50. <artifactId>service-user-client</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.atguigu.tingshu</groupId>
  60. <artifactId>rabbit-util</artifactId>
  61. <version>1.0</version>
  62. </dependency>
  63. </dependencies>
  64. </project>