| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.anji-plus.sp</groupId>
- <artifactId>sp-parent</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sp-push</artifactId>
- <name>sp-push</name>
- <packaging>jar</packaging>
- <description>app push module</description>
- <dependencies>
- <dependency>
- <groupId>com.anji-plus.sp</groupId>
- <artifactId>sp-auth</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!-- 本地加载 -->
- <dependency>
- <groupId>com.vivo.push.sdk</groupId>
- <artifactId>vpush-server-sdk</artifactId>
- <version>2.2</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/vpush-server-sdk-2.2.jar
- </systemPath>
- </dependency>
- <dependency>
- <groupId>com.oppo.push.sdk</groupId>
- <artifactId>opush-server-sdk</artifactId>
- <version>1.0.6</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/opush-server-sdk-1.0.6.jar
- </systemPath>
- </dependency>
- <dependency>
- <groupId>com.xiaomi.xmpush</groupId>
- <artifactId>MiPush_SDK_Server_Http</artifactId>
- <version>2_1.0.9</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/MiPush_SDK_Server_Http2_1.0.9.jar
- </systemPath>
- </dependency>
- <!--commons-codec-->
- <!-- <dependency>-->
- <!-- <groupId>commons-codec</groupId>-->
- <!-- <artifactId>commons-codec</artifactId>-->
- <!-- <version>1.15</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>commons-logging</groupId>-->
- <!-- <artifactId>commons-logging</artifactId>-->
- <!-- <version>1.2</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.conscrypt</groupId>
- <artifactId>conscrypt-openjdk-uber</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.12</version>
- </dependency>
- <!-- apache common封装好的HttpClient-->
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.5.12</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.json-simple</groupId>
- <artifactId>json-simple</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.4.13</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.squareup.okhttp3</groupId>-->
- <!-- <artifactId>okhttp</artifactId>-->
- <!-- <version>3.6.0</version>-->
- <!-- <scope>provided</scope>-->
- <!-- </dependency>-->
- <!-- 极光推送开始-->
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jpush-client</artifactId>
- <version>3.4.7</version>
- </dependency>
- <!-- 极光推送结束-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <!-- 项目打成jar的同时将本地jar包也引入进去-->
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|