2
0

pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.wildfirechat</groupId>
  6. <artifactId>push</artifactId>
  7. <version>0.1.1</version>
  8. <packaging>jar</packaging>
  9. <name>push</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.6.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.xiaomi.push</groupId>
  38. <artifactId>mipush-sdk-server</artifactId>
  39. <version>2.2.18</version>
  40. <scope>system</scope>
  41. <systemPath>${project.basedir}/src/main/libs/MiPush_SDK_Server_2_2_19.jar
  42. </systemPath>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.oppo.push</groupId>
  46. <artifactId>opush-server</artifactId>
  47. <version>1.0.4</version>
  48. <scope>system</scope>
  49. <systemPath>${project.basedir}/src/main/libs/opush-server-sdk-1.0.4.jar
  50. </systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.meizu.flyme</groupId>
  54. <artifactId>push-server-sdk</artifactId>
  55. <version>1.2.7.20180307_release</version>
  56. </dependency>
  57. <!--vivo push-->
  58. <dependency>
  59. <groupId>com.vivo.push.sdk</groupId>
  60. <artifactId>vPush-server-sdk</artifactId>
  61. <version>1.0</version>
  62. <scope>system</scope>
  63. <systemPath>${project.basedir}/src/main/libs/vPush-server-sdk-1.0.jar
  64. </systemPath>
  65. </dependency>
  66. <!-- <dependency>-->
  67. <!-- <groupId>org.apache.commons.codec</groupId>-->
  68. <!-- <artifactId>commons-codec</artifactId>-->
  69. <!-- <version>1.9</version>-->
  70. <!-- <scope>system</scope>-->
  71. <!-- <systemPath>${project.basedir}/src/main/libs/commons-codec-1.9.jar-->
  72. <!-- </systemPath>-->
  73. <!-- </dependency>-->
  74. <!-- <dependency>-->
  75. <!-- <groupId>org.apache.commons.logging</groupId>-->
  76. <!-- <artifactId>commons-logging</artifactId>-->
  77. <!-- <version>1.2</version>-->
  78. <!-- <scope>system</scope>-->
  79. <!-- <systemPath>${project.basedir}/src/main/libs/commons-logging-1.2.jar-->
  80. <!-- </systemPath>-->
  81. <!-- </dependency>-->
  82. <!-- <dependency>-->
  83. <!-- <groupId>com.alibaba.fastjson</groupId>-->
  84. <!-- <artifactId>fastjson</artifactId>-->
  85. <!-- <version>1.2.28</version>-->
  86. <!-- <scope>system</scope>-->
  87. <!-- <systemPath>${project.basedir}/src/main/libs/fastjson-1.2.28.jar-->
  88. <!-- </systemPath>-->
  89. <!-- </dependency>-->
  90. <dependency>
  91. <groupId>org.apache.http</groupId>
  92. <artifactId>httpclient</artifactId>
  93. <version>4.5</version>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/src/main/libs/httpclient-4.5.jar
  96. </systemPath>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.http</groupId>
  100. <artifactId>httpcore</artifactId>
  101. <version>4.4.1</version>
  102. <scope>system</scope>
  103. <systemPath>${project.basedir}/src/main/libs/httpcore-4.4.1.jar
  104. </systemPath>
  105. </dependency>
  106. <!--vivo push end-->
  107. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  108. <dependency>
  109. <groupId>com.google.code.gson</groupId>
  110. <artifactId>gson</artifactId>
  111. <version>2.8.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-io</groupId>
  115. <artifactId>commons-io</artifactId>
  116. <version>2.7</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.googlecode.json-simple</groupId>
  120. <artifactId>json-simple</artifactId>
  121. <version>1.1.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.slf4j</groupId>
  125. <artifactId>slf4j-api</artifactId>
  126. <version>1.7.5</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.slf4j</groupId>
  130. <artifactId>slf4j-log4j12</artifactId>
  131. <version>1.7.5</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-httpclient</groupId>
  135. <artifactId>commons-httpclient</artifactId>
  136. <version>3.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>uk.org.lidalia</groupId>
  140. <artifactId>slf4j-test</artifactId>
  141. <version>1.0.0-jdk6</version>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.google.code.findbugs</groupId>
  146. <artifactId>annotations</artifactId>
  147. <version>2.0.3</version>
  148. <scope>provided</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.mockito</groupId>
  152. <artifactId>mockito-all</artifactId>
  153. <version>1.9.5</version>
  154. <type>jar</type>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.fasterxml.jackson.core</groupId>
  159. <artifactId>jackson-core</artifactId>
  160. <version>2.9.8</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.fasterxml.jackson.core</groupId>
  164. <artifactId>jackson-databind</artifactId>
  165. <version>2.9.10.7</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.fasterxml.jackson.core</groupId>
  169. <artifactId>jackson-annotations</artifactId>
  170. <version>2.9.8</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.turo</groupId>
  174. <artifactId>pushy</artifactId>
  175. <version>0.13.10</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.turo</groupId>
  179. <artifactId>pushy-micrometer-metrics-listener</artifactId>
  180. <version>0.13.10</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.google.firebase</groupId>
  184. <artifactId>firebase-admin</artifactId>
  185. <version>7.1.0</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.google.guava</groupId>
  189. <artifactId>guava</artifactId>
  190. <version>30.0-jre</version>
  191. </dependency>
  192. <!-- <dependency>-->
  193. <!-- <groupId>io.netty</groupId>-->
  194. <!-- <artifactId>netty-tcnative-boringssl-static</artifactId>-->
  195. <!-- <version>2.0.25.Final</version>-->
  196. <!-- <scope>runtime</scope>-->
  197. <!-- </dependency>-->
  198. </dependencies>
  199. <build>
  200. <plugins>
  201. <plugin>
  202. <groupId>org.springframework.boot</groupId>
  203. <artifactId>spring-boot-maven-plugin</artifactId>
  204. </plugin>
  205. </plugins>
  206. <resources>
  207. <resource>
  208. <directory>src/main/libs</directory>
  209. <targetPath>BOOT-INF/lib/</targetPath>
  210. <includes>
  211. <include>**/*.jar</include>
  212. </includes>
  213. </resource>
  214. </resources>
  215. </build>
  216. </project>