pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <groupId>cn.com.ty</groupId>
  7. <artifactId>lift-server</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lift-push</artifactId>
  12. <!--添加依赖 -->
  13. <dependencies>
  14. <!-- 添加websocket依赖 -->
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-websocket</artifactId>
  18. </dependency>
  19. <!-- 添加公共模块依赖 -->
  20. <dependency>
  21. <groupId>cn.com.ty</groupId>
  22. <artifactId>lift-common</artifactId>
  23. <version>1.0-SNAPSHOT</version>
  24. </dependency>
  25. <!--集成Hutool是一个小而全的Java工具类库:https://www.hutool.cn/docs/#/-->
  26. <dependency>
  27. <groupId>cn.hutool</groupId>
  28. <artifactId>hutool-all</artifactId>
  29. <version>5.0.6</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.tencent</groupId>
  33. <artifactId>xinge-push</artifactId>
  34. <version>1.2.0</version>
  35. </dependency>
  36. </dependencies>
  37. </project>