pom.xml 2.4 KB

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