pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.xmzs</groupId>
  6. <artifactId>live-chat-clients</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <packaging>jar</packaging>
  10. <artifactId>live-chat-client-kuaishou</artifactId>
  11. <name>live-chat-client-kuaishou</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xmzs</groupId>
  18. <artifactId>live-chat-client-servers-netty-client</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.protobuf</groupId>
  22. <artifactId>protobuf-java-util</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>ch.qos.logback</groupId>
  26. <artifactId>logback-classic</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.junit.jupiter</groupId>
  30. <artifactId>junit-jupiter</artifactId>
  31. <version>${junit-jupiter.version}</version>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. </project>