Go to file
Florian Schmaus 066a4d6c9e Add maybeCheckForSnapshotDependencies to build.gradle
to check for Snapshot dependencies in release builds.
2014-08-20 20:53:17 +02:00
config Enable more 'checkstyle' checks 2014-08-15 23:17:45 +02:00
documentation Updated providers.md: s/.getInstance()// 2014-08-20 12:33:15 +02:00
resources Smack 4.0.3 2014-08-16 00:18:54 +02:00
smack-android Enable more 'checkstyle' checks 2014-08-15 23:17:45 +02:00
smack-bosh Add getLastStanzaReceived() to XMPPConnection 2014-08-20 10:35:17 +02:00
smack-compression-jzlib Add a setting for the used flush mode when compressing data 2014-08-07 16:18:44 +02:00
smack-core Merge branch '4.0' 2014-08-20 15:29:29 +02:00
smack-debug Enable more 'checkstyle' checks 2014-08-15 23:17:45 +02:00
smack-debug-slf4j SmackDebugger initialization moved to dedicated factory. 2014-08-18 12:03:54 +02:00
smack-experimental Updated support for HTTP over XMPP (XEP-0332) 2014-08-16 08:21:06 +02:00
smack-extensions Add '::1' to the loopbackAddresses 2014-08-20 18:12:48 +02:00
smack-java7 Configure default Hostname Verifiers 2014-08-03 21:15:41 +02:00
smack-jingle-old Renamed smack-jingle to smack-jingle-old 2014-08-20 00:26:02 +02:00
smack-legacy Enable more 'checkstyle' checks 2014-08-15 23:17:45 +02:00
smack-resolver-dnsjava Enable more 'checkstyle' checks 2014-08-15 23:17:45 +02:00
smack-resolver-javax Make resolver-dnsjava, -minidns initializer 2014-08-11 19:39:31 +02:00
smack-resolver-minidns Make resolver-dnsjava, -minidns initializer 2014-08-11 19:39:31 +02:00
smack-sasl-javax Remove smack-core sasl configuration 2014-08-12 21:54:22 +02:00
smack-sasl-provided Add SASL PLAIN implementation to smack-sasl-provided 2014-08-16 09:29:32 +02:00
smack-tcp Add getLastStanzaReceived() to XMPPConnection 2014-08-20 10:35:17 +02:00
.gitignore Migrate from Ant to Gradle (SMACK-265) 2014-02-14 18:46:33 +01:00
.travis.yml Add smack-android and redesign SASL authentication 2014-08-01 10:34:47 +02:00
README.md s/ohloh/openhub/ in README.md 2014-07-23 08:29:47 +02:00
build.gradle Add maybeCheckForSnapshotDependencies to build.gradle 2014-08-20 20:53:17 +02:00
settings.gradle Renamed smack-jingle to smack-jingle-old 2014-08-20 00:26:02 +02:00

README.md

Smack

Build Status Project Stats

About

Smack is an Open Source, cross-platform, easy to use Java XMPP client library.

Communicate with XMPP servers to perform real-time collaboration, including instant messaging and group chat.

Key Advantages :

  • Extremely simple to use, yet powerful API. Sending a text message to a user can be accomplished in only a few lines of code:

    AbstractXMPPConnection connection = new XMPPTCPConnection("jabber.org");
    connection.connect();
    connection.login("mtucker", "password");
    Chat chat = ChatManager.getInstanceFor(connection)
        .createChat("jsmith@jivesoftware.com", new MessageListener() {
    
        public void processMessage(Chat chat, Message message) {
            System.out.println("Received message: " + message);
        }
    });
    chat.sendMessage("Howdy!");
    
  • Doesn't force you to code at the packet level, as other libraries do. Smack provides intelligent higher level constructs such as the Chat and Roster classes, which let you program more efficiently.

  • Does not require that you're familiar with the XMPP XML format, or even that you're familiar with XML.

  • Provides easy machine to machine communication. Smack lets you set any number of properties on each message, including properties that are Java objects.

  • Open Source under the Apache License, which means you can incorporate Smack into your commercial or non-commercial applications.

Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java library, it can be embedded into your applications to create anything from a full XMPP client to simple XMPP integrations such as sending notification messages and presence-enabling devices.

Smack - an Ignite Realtime community project.

Bug Reporting

Only a few usrs have acces for for filling bugs in the tracker. New users should:

  1. Create a forums account (only e-mail is a requirement, you can skip all the other fields).
  2. Login to a forum account
  3. Press New in your toolbar and choose Discussion
  4. Choose the Smack Dev forum of Smack and add the tag 'bug_report' to your new post

Please search for your issues in the bug tracker before reporting.

Contact

The developeres hang around in #smack (freenode, IRC). Remeber that it may take some time (~hours) to get a response.

You can also reach us via the Smack Developers Forum.

Resources

Ignite Realtime

Ignite Realtime is an Open Source community composed of end-users and developers around the world who are interested in applying innovative, open-standards-based Real Time Collaboration to their businesses and organizations. We're aimed at disrupting proprietary, non-open standards-based systems and invite you to participate in what's already one of the biggest and most active Open Source communities.