pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <!--从私有仓库加载依赖-->
  26. <dependency>
  27. <groupId>com.tencent</groupId>
  28. <artifactId>xinge-push</artifactId>
  29. <version>1.2.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.com.xwy</groupId>
  33. <artifactId>xwy-spring-boot</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.com.xwy</groupId>
  37. <artifactId>xwy-cloud-dependencies</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <configuration>
  46. <mainClass>cn.com.ty.lift.push.PushApplication</mainClass>
  47. </configuration>
  48. <executions>
  49. <execution>
  50. <goals>
  51. <goal>repackage</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>