Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

test #125

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: java
jdk:
- openjdk6
- openjdk7
52 changes: 29 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
Cloudhopper SMPP by Twitter [![Build Status](https://secure.travis-ci.org/twitter/cloudhopper-smpp.png?branch=master)](http://travis-ci.org/twitter/cloudhopper-smpp)
============================
Cloudhopper SMPP by Fizzed (forked from Twitter)
================================================

News
------------------------
* Netty 4 beta is available at Maven Central. Please test and submit issues.
Since stability & reliability is critical for this library and how netty-4
required significant changes -- we still need your help with beta testing.
[![Build Status](https://secure.travis-ci.org/fizzed/cloudhopper-smpp.png?branch=master)](http://travis-ci.org/fizzed/cloudhopper-smpp)

Sponsored by
------------

<dependency>
<groupId>com.cloudhopper</groupId>
<artifactId>ch-smpp</artifactId>
<version>6.0.0-netty4-beta-2</version>
</dependency>
Cloudhopper-SMPP is proudly sponsored by <a href="https://www.greenback.com">Greenback</a>. We love the service and think you would too.

<a href="https://www.greenback.com?utm_source=github.com&utm_medium=sponsorship&utm_campaign=fizzed-cloudhopper-smpp" title="Greenback - Expenses made simple"><img src="https://www.greenback.com/assets/images/logo-greenback.png" height="48" width="166" alt="Greenback"></a>

<a href="https://www.greenback.com?utm_source=github.com&utm_medium=sponsorship&utm_campaign=fizzed-cloudhopper-smpp" title="Greenback - Expenses made simple">More engineering. Less paperwork. Expenses made simple.</a>

Overview
------------------------

Efficient, scalable, rock-solid, and flexible Java implementation of the Short
Messaging Peer to Peer Protocol (SMPP).

Twitter exclusively relies on this library for its global SMS infrastructure.

* Real-world used library by Twitter across nearly every SMSC vendor and
mobile operator around the world. We've seen almost every variance in the
SMPP protocol and this library handles it flawlessly.
Expand Down Expand Up @@ -49,31 +50,34 @@ The library has been tested and certified with hundreds of mobile operators
and suppliers around the world. It's effective at being flexible with SMPP
specifications that aren't truly compliant.


Background and Contributors
---------------------------

This library was originally developed by Cloudhopper, Inc. in 2008. Cloudhopper
was acquired by Twitter in April 2010. The main author of this library,
Joe Lauer, left Twitter in April 2013. While folks at Twitter still contribute
and maintain this library, Joe is now with [Fizzed, Inc](http://fizzed.com).
Fizzed sponsors this project in conjunction with Twitter. If you have
any commercial questions/ideas pertaining to this library, feel free to reach
out to [Fizzed](http://fizzed.com).
Joe Lauer, left Twitter in April 2013 to found Fizzed, Inc. As of Nov 2015,
[Fizzed, Inc](http://fizzed.com) is the official maintainer of the library.
If you're looking for commercial support, please contact [Fizzed](http://fizzed.com).

- Joe Lauer (Twitter: [@jjlauer](http://twitter.com/jjlauer))
- Garth (Twitter: [@trg](http://twitter.com/trg))

Installation
------------

Library versions >= 5.0.0 are now published to the Maven Central Repository.
Just add the following dependency to your project maven pom.xml:
Library is available via maven central. For netty-3 and a stable version:

<dependency>
<groupId>com.fizzed</groupId>
<artifactId>ch-smpp</artifactId>
<version>5.0.9</version>
</dependency>

For netty-4 and a little more bleeding edge. Visit [netty-4 branch](https://github.com/fizzed/cloudhopper-smpp/tree/netty4)

<dependency>
<groupId>com.cloudhopper</groupId>
<groupId>com.fizzed</groupId>
<artifactId>ch-smpp</artifactId>
<version>5.0.8</version>
<version>6.0.0-netty4-beta-3</version>
</dependency>

Demo Code / Tutorials
Expand Down Expand Up @@ -133,6 +137,8 @@ Please let us know if you have other tutorials worth mentioning!
License
-------

Copyright (C) 2015+ Fizzed, Inc.
Copyright (C) 2009-2015 Twitter, Inc.
Copyright (C) 2008-2009 Cloudhopper, Inc.

This work is licensed under the Apache License, Version 2.0. See LICENSE for details.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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.cloudhopper</groupId>
<groupId>com.fizzed</groupId>
<artifactId>ch-smpp</artifactId>
<packaging>jar</packaging>
<version>5.0.10-SNAPSHOT</version>
Expand All @@ -11,9 +11,9 @@
<inceptionYear>2009</inceptionYear>

<scm>
<url>https://github.com/twitter/cloudhopper-smpp</url>
<connection>scm:git:https://github.com/twitter/cloudhopper-smpp.git</connection>
<developerConnection>scm:git:[email protected]:twitter/cloudhopper-smpp.git</developerConnection>
<url>https://github.com/fizzed/cloudhopper-smpp</url>
<connection>scm:git:https://github.com/fizzed/cloudhopper-smpp.git</connection>
<developerConnection>scm:git:[email protected]:fizzed/cloudhopper-smpp.git</developerConnection>
<tag>master</tag>
</scm>

Expand All @@ -30,6 +30,8 @@
<ch-commons-gsm.version>3.0.0</ch-commons-gsm.version>
<netty.version>3.9.6.Final</netty.version>
<slf4j.version>1.7.13</slf4j.version>
<!-- workaround travis ci maven version requirement -->
<maven.enforce.version>3.2.5</maven.enforce.version>
</properties>

<dependencies>
Expand Down