pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <!--从私有仓库加载依赖-->
  32. <dependency>
  33. <groupId>com.tencent</groupId>
  34. <artifactId>xinge-push</artifactId>
  35. <version>1.2.0</version>
  36. </dependency>
  37. <!--从本地lib中加载依赖-->
  38. <!--<dependency>-->
  39. <!--<groupId>com.tencent</groupId>-->
  40. <!--<artifactId>xinge</artifactId>-->
  41. <!--<version>1.2.0</version>-->
  42. <!--<scope>system</scope>-->
  43. <!--<systemPath>${project.basedir}/src/main/resources/lib/xinge-1.2.0-SNAPSHOT.jar</systemPath>-->
  44. <!--</dependency>-->
  45. </dependencies>
  46. <!--如果从本地加载jar依赖,必须指定以下配置-->
  47. <!--<build>-->
  48. <!--<plugins>-->
  49. <!--<plugin>-->
  50. <!--<groupId>org.apache.maven.plugins</groupId>-->
  51. <!--<artifactId>maven-compiler-plugin</artifactId>-->
  52. <!--</plugin>-->
  53. <!--<plugin>-->
  54. <!--<groupId>org.springframework.boot</groupId>-->
  55. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  56. <!--<configuration>-->
  57. <!--<executable>true</executable>-->
  58. <!--<includeSystemScope>true</includeSystemScope>-->
  59. <!--</configuration>-->
  60. <!--<executions>-->
  61. <!--<execution>-->
  62. <!--<goals>-->
  63. <!--<goal>repackage</goal>-->
  64. <!--</goals>-->
  65. <!--</execution>-->
  66. <!--</executions>-->
  67. <!--</plugin>-->
  68. <!--</plugins>-->
  69. <!--</build>-->
  70. </project>