123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>tingshu-parent</artifactId>
- <groupId>com.atguigu.tingshu</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>service-album</module>
- <module>service-search</module>
- <module>service-account</module>
- <module>service-dispatch</module>
- <module>service-order</module>
- <module>service-payment</module>
- <module>service-user</module>
- <module>service-cdc</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>net.logstash.logback</groupId>
- <artifactId>logstash-logback-encoder</artifactId>
- <version>5.1</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-util</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-account-client</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-album-client</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-order-client</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-user-client</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>rabbit-util</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </project>
|