pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.eitc</groupId>
  8. <artifactId>eitc</artifactId>
  9. <version>3.8.7</version>
  10. </parent>
  11. <artifactId>eitc-patient-chat</artifactId>
  12. <description>聊天组件</description>
  13. <version>${eitc.version}</version>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <!-- 通用工具-->
  21. <dependency>
  22. <groupId>com.eitc</groupId>
  23. <artifactId>eitc-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.eitc</groupId>
  27. <artifactId>eitc-framework</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.eitc</groupId>
  31. <artifactId>eitc-patient-base</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.netty</groupId>
  35. <artifactId>netty-all</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.msgpack</groupId>
  39. <artifactId>msgpack</artifactId>
  40. <version>0.6.12</version>
  41. </dependency>
  42. </dependencies>
  43. </project>