pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <!--信鸽插件换成极光插件-->
  27. <!--<dependency>
  28. <groupId>com.tencent</groupId>
  29. <artifactId>xinge-push</artifactId>
  30. <version>1.2.0</version>
  31. </dependency>-->
  32. <dependency>
  33. <groupId>cn.jpush.api</groupId>
  34. <artifactId>jpush-client</artifactId>
  35. <version>3.4.3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.jpush.api</groupId>
  39. <artifactId>jiguang-common</artifactId>
  40. <version>1.1.7</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.com.xwy</groupId>
  44. <artifactId>xwy-spring-boot</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.com.xwy</groupId>
  48. <artifactId>xwy-cloud-dependencies</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <configuration>
  57. <mainClass>cn.com.ty.lift.push.PushApplication</mainClass>
  58. </configuration>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>repackage</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>