pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <parent>
  6. <groupId>com.anji-plus.sp</groupId>
  7. <artifactId>sp-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>sp-push</artifactId>
  11. <name>sp-push</name>
  12. <packaging>jar</packaging>
  13. <description>app push module</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.anji-plus.sp</groupId>
  17. <artifactId>sp-auth</artifactId>
  18. <version>1.0.0</version>
  19. </dependency>
  20. <!-- 本地加载 -->
  21. <dependency>
  22. <groupId>com.vivo.push.sdk</groupId>
  23. <artifactId>vpush-server-sdk</artifactId>
  24. <version>2.2</version>
  25. <scope>system</scope>
  26. <systemPath>${pom.basedir}/src/main/resources/libs/vpush-server-sdk-2.2.jar
  27. </systemPath>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.oppo.push.sdk</groupId>
  31. <artifactId>opush-server-sdk</artifactId>
  32. <version>1.0.6</version>
  33. <scope>system</scope>
  34. <systemPath>${pom.basedir}/src/main/resources/libs/opush-server-sdk-1.0.6.jar
  35. </systemPath>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.xiaomi.xmpush</groupId>
  39. <artifactId>MiPush_SDK_Server_Http</artifactId>
  40. <version>2_1.0.9</version>
  41. <scope>system</scope>
  42. <systemPath>${pom.basedir}/src/main/resources/libs/MiPush_SDK_Server_Http2_1.0.9.jar
  43. </systemPath>
  44. </dependency>
  45. <!--commons-codec-->
  46. <!-- <dependency>-->
  47. <!-- <groupId>commons-codec</groupId>-->
  48. <!-- <artifactId>commons-codec</artifactId>-->
  49. <!-- <version>1.15</version>-->
  50. <!-- </dependency>-->
  51. <!-- <dependency>-->
  52. <!-- <groupId>commons-logging</groupId>-->
  53. <!-- <artifactId>commons-logging</artifactId>-->
  54. <!-- <version>1.2</version>-->
  55. <!-- </dependency>-->
  56. <dependency>
  57. <groupId>org.conscrypt</groupId>
  58. <artifactId>conscrypt-openjdk-uber</artifactId>
  59. <version>2.1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpclient</artifactId>
  64. <version>4.5.12</version>
  65. </dependency>
  66. <!-- apache common封装好的HttpClient-->
  67. <dependency>
  68. <groupId>commons-httpclient</groupId>
  69. <artifactId>commons-httpclient</artifactId>
  70. <version>3.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpmime</artifactId>
  75. <version>4.5.12</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.googlecode.json-simple</groupId>
  79. <artifactId>json-simple</artifactId>
  80. <version>1.1.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpcore</artifactId>
  85. <version>4.4.13</version>
  86. </dependency>
  87. <!-- <dependency>-->
  88. <!-- <groupId>com.squareup.okhttp3</groupId>-->
  89. <!-- <artifactId>okhttp</artifactId>-->
  90. <!-- <version>3.6.0</version>-->
  91. <!-- <scope>provided</scope>-->
  92. <!-- </dependency>-->
  93. <!-- 极光推送开始-->
  94. <dependency>
  95. <groupId>cn.jpush.api</groupId>
  96. <artifactId>jpush-client</artifactId>
  97. <version>3.4.7</version>
  98. </dependency>
  99. <!-- 极光推送结束-->
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <!-- 项目打成jar的同时将本地jar包也引入进去-->
  107. <configuration>
  108. <includeSystemScope>true</includeSystemScope>
  109. </configuration>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <configuration>
  115. <source>8</source>
  116. <target>8</target>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>