pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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>lift-server</artifactId>
  7. <groupId>cn.com.ty</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lift-chat-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.xwy</groupId>
  15. <artifactId>xwy-spring-boot</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.com.xwy</groupId>
  19. <artifactId>xwy-cloud-dependencies</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.com.ty</groupId>
  23. <artifactId>lift-common</artifactId>
  24. <version>1.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. <version>1.2.40</version>
  30. </dependency>
  31. <!-- netty -->
  32. <dependency>
  33. <groupId>io.netty</groupId>
  34. <artifactId>netty-all</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.msgpack</groupId>
  38. <artifactId>msgpack</artifactId>
  39. <version>0.6.12</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <finalName>lift-chat</finalName>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>