Download jpush-client-3.1.3.jar file

Introduction

You can download jpush-client-3.1.3.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jpush-client-3.1.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/cn.jpush.api/jpush-client/pom.properties
META-INF/maven/cn.jpush.api/jpush-client/pom.xml
cn.jpush.api.JPushClient.class
cn.jpush.api.common.APIConnectionException.class
cn.jpush.api.common.APIRequestException.class
cn.jpush.api.common.BaseResult.class
cn.jpush.api.common.DeviceType.class
cn.jpush.api.common.HttpProxy.class
cn.jpush.api.common.IHttpClient.class
cn.jpush.api.common.IRateLimiting.class
cn.jpush.api.common.NativeHttpClient.class
cn.jpush.api.common.ResponseWrapper.class
cn.jpush.api.common.ServiceHelper.class
cn.jpush.api.common.TimeUnit.class
cn.jpush.api.examples.PushExample.class
cn.jpush.api.examples.ReportsExample.class
cn.jpush.api.push.PushClient.class
cn.jpush.api.push.PushResult.class
cn.jpush.api.push.model.Message.class
cn.jpush.api.push.model.Options.class
cn.jpush.api.push.model.Platform.class
cn.jpush.api.push.model.PushModel.class
cn.jpush.api.push.model.PushPayload.class
cn.jpush.api.push.model.audience.Audience.class
cn.jpush.api.push.model.audience.AudienceTarget.class
cn.jpush.api.push.model.audience.AudienceType.class
cn.jpush.api.push.model.notification.AndroidNotification.class
cn.jpush.api.push.model.notification.IosNotification.class
cn.jpush.api.push.model.notification.Notification.class
cn.jpush.api.push.model.notification.PlatformNotification.class
cn.jpush.api.push.model.notification.WinphoneNotification.class
cn.jpush.api.report.MessagesResult.class
cn.jpush.api.report.ReceivedsResult.class
cn.jpush.api.report.ReportClient.class
cn.jpush.api.report.UsersResult.class
cn.jpush.api.utils.Base64.class
cn.jpush.api.utils.StringUtils.class

Pom

jpush-client-3.1.3.pom file content.

<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>

	<groupId>cn.jpush.api</groupId>
	<artifactId>jpush-client</artifactId>
	<version>3.1.3</version>
	<packaging>jar</packaging>
	<url>https://github.com/jpush/jpush-api-java-client</url>
	<name>JPush API Java Client</name>
	<description>JPush's officially supported Java client library for accessing JPush APIs.</description>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<properties>
		<github.global.server>github</github.global.server>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>9</version>
	</parent>

	<scm>
		<url>https://github.com/jpush/jpush-api-java-client</url>
		<connection>scm:git:git@github.com:jpush/jpush-api-java-client.git</connection>
		<developerConnection>scm:git:git@github.com:jpush/jpush-api-java-client.git</developerConnection>
		<tag>v3.1.3</tag>
	</scm>

	<dependencies>
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.2.4</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.5</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.5</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>17.0</version>
		</dependency>

		<dependency>
			<groupId>com.squareup.okhttp</groupId>
			<artifactId>mockwebserver</artifactId>
			<version>1.5.4</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<sourceDirectory>src</sourceDirectory>
		<testSourceDirectory>test</testSourceDirectory>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.5</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5</version>
				<dependencies>
					<dependency>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-scm-plugin</artifactId>
						<version>1.8.1</version>
					</dependency>
				</dependencies>
				<configuration>
					<goals>deploy,site</goals>
					<pushChanges>false</pushChanges>
					<localCheckout>true</localCheckout>
					<commitByProject>true</commitByProject>
					<tagNameFormat>v@{project.version}</tagNameFormat>
				</configuration>
			</plugin>
			<plugin>
				<groupId>com.github.github</groupId>
				<artifactId>site-maven-plugin</artifactId>
				<version>0.9</version>
				<configuration>
					<message>Creating site for ${project.version}</message>
					<server>github</server>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>site</goal>
						</goals>
						<phase>site</phase>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.7</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>dependencies</report>
							<report>license</report>
							<report>scm</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<configuration>
					<overview>resources/javadoc-overview.html</overview>
				</configuration>
			</plugin>
		</plugins>
	</reporting>

</project>

POM Entry

<dependency>
   <groupId>cn.jpush.api</groupId>
   <artifactId>jpush-client</artifactId>
   <version>3.1.3</version>
</dependency>

Download

If you think the following jpush-client-3.1.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jpush-client-3.1.3.jar file




PreviousNext

Related