Download javapns-jdk16-2.2.1.jar file

Introduction

You can download javapns-jdk16-2.2.1.jar in this page.

License

GNU LGPL license v3.0

Type List

javapns-jdk16-2.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.fernandospr/javapns-jdk16/pom.properties
META-INF/maven/com.github.fernandospr/javapns-jdk16/pom.xml
javapns.Push.class
javapns.communication.AppleServer.class
javapns.communication.AppleServerBasicImpl.class
javapns.communication.ConnectionToAppleServer.class
javapns.communication.KeystoreManager.class
javapns.communication.ProxyManager.class
javapns.communication.ServerTrustingTrustManager.class
javapns.communication.WrappedKeystore.class
javapns.communication.exceptions.CommunicationException.class
javapns.communication.exceptions.InvalidCertificateChainException.class
javapns.communication.exceptions.InvalidKeystoreFormatException.class
javapns.communication.exceptions.InvalidKeystorePasswordException.class
javapns.communication.exceptions.InvalidKeystoreReferenceException.class
javapns.communication.exceptions.KeystoreException.class
javapns.devices.Device.class
javapns.devices.DeviceFactory.class
javapns.devices.Devices.class
javapns.devices.exceptions.DuplicateDeviceException.class
javapns.devices.exceptions.InvalidDeviceTokenFormatException.class
javapns.devices.exceptions.NullDeviceTokenException.class
javapns.devices.exceptions.NullIdException.class
javapns.devices.exceptions.UnknownDeviceException.class
javapns.devices.implementations.basic.BasicDevice.class
javapns.devices.implementations.basic.BasicDeviceFactory.class
javapns.feedback.AppleFeedbackServer.class
javapns.feedback.AppleFeedbackServerBasicImpl.class
javapns.feedback.ConnectionToFeedbackServer.class
javapns.feedback.FeedbackServiceManager.class
javapns.notification.AppleNotificationServer.class
javapns.notification.AppleNotificationServerBasicImpl.class
javapns.notification.ConnectionToNotificationServer.class
javapns.notification.NewsstandNotificationPayload.class
javapns.notification.Payload.class
javapns.notification.PayloadPerDevice.class
javapns.notification.PushNotificationManager.class
javapns.notification.PushNotificationPayload.class
javapns.notification.PushedNotification.class
javapns.notification.PushedNotifications.class
javapns.notification.ResponsePacket.class
javapns.notification.ResponsePacketReader.class
javapns.notification.exceptions.ErrorResponsePacketReceivedException.class
javapns.notification.exceptions.PayloadAlertAlreadyExistsException.class
javapns.notification.exceptions.PayloadIsEmptyException.class
javapns.notification.exceptions.PayloadMaxSizeExceededException.class
javapns.notification.exceptions.PayloadMaxSizeProbablyExceededException.class
javapns.notification.management.APNPayload.class
javapns.notification.management.CalDAVPayload.class
javapns.notification.management.CalendarSubscriptionPayload.class
javapns.notification.management.EmailPayload.class
javapns.notification.management.LDAPPayload.class
javapns.notification.management.MobileConfigPayload.class
javapns.notification.management.PasswordPolicyPayload.class
javapns.notification.management.RemovalPasswordPayload.class
javapns.notification.management.RestrictionsPayload.class
javapns.notification.management.SCEPPayload.class
javapns.notification.management.VPNPayload.class
javapns.notification.management.WebClipPayload.class
javapns.notification.management.WiFiPayload.class
javapns.notification.transmission.NotificationProgressListener.class
javapns.notification.transmission.NotificationThread.class
javapns.notification.transmission.NotificationThreads.class
javapns.notification.transmission.PushQueue.class
javapns.test.FeedbackTest.class
javapns.test.NotificationTest.class
javapns.test.SpecificNotificationTests.class
javapns.test.TestFoundation.class
org.json.CDL.class
org.json.Cookie.class
org.json.CookieList.class
org.json.HTTP.class
org.json.HTTPTokener.class
org.json.JSONArray.class
org.json.JSONException.class
org.json.JSONML.class
org.json.JSONNull.class
org.json.JSONObject.class
org.json.JSONRawValue.class
org.json.JSONString.class
org.json.JSONStringer.class
org.json.JSONTokener.class
org.json.JSONWriter.class
org.json.Test.class
org.json.XML.class
org.json.XMLTokener.class

Pom

javapns-jdk16-2.2.1.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
  	<groupId>com.github.fernandospr</groupId>
  	<artifactId>javapns-jdk16</artifactId>
  	<packaging>jar</packaging>
  	<version>2.2.1</version>
  	<name>javapns-jdk16</name>
  	<description>Library to send notifications using APNS</description>
  	<url>https://github.com/fernandospr/javapns-jdk16</url>
	<licenses>
		<license>
			<name>GNU LGPL license v3.0</name>
			<url>http://opensource.org/licenses/lgpl-3.0.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
	<!-- Inherit the Sonatype OSS deployment configuration -->
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<scm>
		<connection>scm:git:git@github.com:fernandospr/javapns-jdk16.git</connection>
		<url>scm:git:git@github.com:fernandospr/javapns-jdk16.git</url>
		<developerConnection>scm:git:git@github.com:fernandospr/javapns-jdk16.git</developerConnection>
	</scm>
	<developers>
		<developer>
			<id>fernandospr</id>
			<name>Fernando Sproviero</name>
		</developer>
	</developers>
	
  	<dependencies>
    	<dependency>
	      	<groupId>junit</groupId>
    	  	<artifactId>junit</artifactId>
	      	<version>3.8.1</version>
      		<scope>test</scope>
    	</dependency>
    
		<!-- logging -->
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.12</version>
		</dependency>
	
		<!-- crypto -->
		<dependency>
			<groupId>org.bouncycastle</groupId>
			<artifactId>bcprov-jdk16</artifactId>
			<version>1.46</version>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<configuration>
					<descriptorRefs>
						<descriptorRef>jar-with-dependencies</descriptorRef>
					</descriptorRefs>
				</configuration>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>com.github.fernandospr</groupId>
   <artifactId>javapns-jdk16</artifactId>
   <version>2.2.1</version>
</dependency>

Download

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



Download javapns-jdk16-2.2.1.jar file




PreviousNext

Related