12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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.chelvc.framework</groupId>
- <artifactId>framework-dependencies</artifactId>
- <version>1.0.0-RELEASE</version>
- <relativePath/>
- </parent>
- <artifactId>framework-jpush</artifactId>
- <version>1.0.0-RELEASE</version>
- <properties>
- <framework-base.version>1.0.0-RELEASE</framework-base.version>
- <jpush-client.version>3.5.2</jpush-client.version>
- <jmessage-client.version>1.1.7</jmessage-client.version>
- <jiguang-common.version>1.1.12</jiguang-common.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-base</artifactId>
- <version>${framework-base.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jpush-client</artifactId>
- <version>${jpush-client.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jmessage-client</artifactId>
- <version>${jmessage-client.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jiguang-common</artifactId>
- <version>${jiguang-common.version}</version>
- </dependency>
- </dependencies>
- </project>
|