You can download jpush-client-3.2.17.jar in this page.
The Apache Software License, Version 2.0
jpush-client-3.2.17.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.device.AliasDeviceListResult.class cn.jpush.api.device.DeviceClient.class cn.jpush.api.device.OnlineStatus.class cn.jpush.api.device.TagAliasResult.class cn.jpush.api.device.TagListResult.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.SMS.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.InterfaceAdapter.class cn.jpush.api.push.model.notification.IosAlert.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.schedule.ScheduleClient.class cn.jpush.api.schedule.ScheduleListResult.class cn.jpush.api.schedule.ScheduleResult.class cn.jpush.api.schedule.model.IModel.class cn.jpush.api.schedule.model.SchedulePayload.class cn.jpush.api.schedule.model.TriggerPayload.class javadoc-overview.html
jpush-client-3.2.17.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.2.17</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> <jdkVersion>1.6</jdkVersion> <jdkVersion.test>1.6</jdkVersion.test> <!--<additionalparam>-Xdoclint:none</additionalparam>--> </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.2.17</tag> </scm> <dependencies> <dependency> <groupId>cn.jpush.api</groupId> <artifactId>jiguang-common</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.6.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.7</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>mockwebserver</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${jdkVersion}</source> <target>${jdkVersion}</target> <compilerVersion>1.5</compilerVersion> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <debug>true</debug> <fork>true</fork> <compilerArgs> <arg>-Xlint:unchecked</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> <dependencies> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <version>1.9.2</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <groups>cn.jpush.api.FastTests</groups> <argLine>-Dfile.encoding=UTF-8</argLine> <excludes> <exclude>**/mock/*Test.java</exclude> </excludes> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.17</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.17</version> <configuration> <encoding>UTF-8</encoding> <groups>cn.jpush.api.SlowTests</groups> <argLine>-Dfile.encoding=UTF-8</argLine> <excludes> <exclude>**/mock/*Test.java</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <includes> <include>**/*.class</include> </includes> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.17</version> </dependency> </dependencies> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</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.10.3</version> <configuration> <overview>resources/javadoc-overview.html</overview> </configuration> </plugin> </plugins> </reporting> </project>
<dependency> <groupId>cn.jpush.api</groupId> <artifactId>jpush-client</artifactId> <version>3.2.17</version> </dependency>
If you think the following jpush-client-3.2.17.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.2.17.jar file