Download pushy-0.4.jar file

Introduction

You can download pushy-0.4.jar in this page.

License

The MIT License (MIT)

Type List

pushy-0.4.jar file has the following types.

.gitignore
META-INF/MANIFEST.MF
META-INF/maven/com.relayrides/pushy/pom.properties
META-INF/maven/com.relayrides/pushy/pom.xml
com.relayrides.pushy.apns.ApnsConnection.class
com.relayrides.pushy.apns.ApnsConnectionConfiguration.class
com.relayrides.pushy.apns.ApnsConnectionListener.class
com.relayrides.pushy.apns.ApnsConnectionPool.class
com.relayrides.pushy.apns.ApnsEnvironment.class
com.relayrides.pushy.apns.ApnsPushNotification.class
com.relayrides.pushy.apns.DeliveryPriority.class
com.relayrides.pushy.apns.ExpiredToken.class
com.relayrides.pushy.apns.ExpiredTokenListener.class
com.relayrides.pushy.apns.FailedConnectionListener.class
com.relayrides.pushy.apns.FeedbackConnectionConfiguration.class
com.relayrides.pushy.apns.FeedbackServiceConnection.class
com.relayrides.pushy.apns.FeedbackServiceListener.class
com.relayrides.pushy.apns.KnownBadPushNotification.class
com.relayrides.pushy.apns.PushManager.class
com.relayrides.pushy.apns.PushManagerConfiguration.class
com.relayrides.pushy.apns.RejectedNotification.class
com.relayrides.pushy.apns.RejectedNotificationListener.class
com.relayrides.pushy.apns.RejectedNotificationReason.class
com.relayrides.pushy.apns.SendableApnsPushNotification.class
com.relayrides.pushy.apns.SentNotificationBuffer.class
com.relayrides.pushy.apns.util.ApnsPayloadBuilder.class
com.relayrides.pushy.apns.util.MalformedTokenStringException.class
com.relayrides.pushy.apns.util.SSLContextUtil.class
com.relayrides.pushy.apns.util.SimpleApnsPushNotification.class
com.relayrides.pushy.apns.util.TokenUtil.class

Pom

pushy-0.4.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>com.relayrides</groupId>
  <artifactId>pushy</artifactId>
  <version>0.4</version>
  <name>Pushy</name>
  <description>A Java library for sending push notifications</description>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <licenses>
    <license>
      <name>The MIT License (MIT)</name>
      <url>http://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <dependencies>
  	<dependency>
  		<groupId>org.slf4j</groupId>
  		<artifactId>slf4j-api</artifactId>
  		<version>1.7.6</version>
  	</dependency>
  	<dependency>
  		<groupId>junit</groupId>
  		<artifactId>junit</artifactId>
  		<version>4.11</version>
  		<scope>test</scope>
  	</dependency>
  	<dependency>
  		<groupId>io.netty</groupId>
  		<artifactId>netty-all</artifactId>
  		<version>4.0.23.Final</version>
  	</dependency>
  	<dependency>
  		<groupId>com.googlecode.json-simple</groupId>
  		<artifactId>json-simple</artifactId>
  		<version>1.1.1</version>
  		<exclusions>
  			<exclusion>
  				<groupId>junit</groupId>
  				<artifactId>junit</artifactId>
  			</exclusion>
  		</exclusions>
  	</dependency>
  	<dependency>
  		<groupId>org.slf4j</groupId>
  		<artifactId>slf4j-simple</artifactId>
  		<version>1.7.6</version>
  		<scope>test</scope>
  	</dependency>
  </dependencies>
  <properties>
  	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <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-surefire-plugin</artifactId>
        <version>2.16</version>
        <configuration>
            <argLine>-Dorg.slf4j.simpleLogger.defaultLogLevel=warn</argLine>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <configuration>
          <overview>${basedir}/src/main/java/overview.html</overview>
          <show>public</show>
          <links>
              <link>http://netty.io/4.0/api/</link>
          </links>
        </configuration>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</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>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <organization>
  	<name>RelayRides</name>
  	<url>https://relayrides.com/</url>
  </organization>
  <developers>
    <developer>
      <id>jon</id>
      <name>Jon Chambers</name>
	  <email>jon@relayrides.com</email>
	  <url>https://github.com/jchambers</url>
	  <organization>RelayRides</organization>
	  <organizationUrl>https://relayrides.com/</organizationUrl>
	  <roles>
	    <role>developer</role>
	  </roles>
	  <timezone>-5</timezone>
    </developer>
  </developers>
  <inceptionYear>2013</inceptionYear>
  <url>http://relayrides.github.com/pushy/</url>
  <scm>
  	<connection>scm:git:https://github.com/relayrides/pushy.git</connection>
  	<developerConnection>scm:git:git@github.com:relayrides/pushy.git</developerConnection>
  	<url>https://github.com/relayrides/pushy</url>
  </scm>
</project>

POM Entry

<dependency>
   <groupId>com.relayrides</groupId>
   <artifactId>pushy</artifactId>
   <version>0.4</version>
</dependency>

Download

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



Download pushy-0.4.jar file




PreviousNext

Related