diff --git a/README.md b/README.md index 43ba29cc3..44609ffe5 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,12 @@ Communicate with XMPP servers to perform real-time collaboration, including inst 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: - ```sh + ```java Connection connection = new XMPPConnection("jabber.org"); connection.connect(); connection.login("mtucker", "password"); - Chat chat = connection.getChatManager().createChat("jsmith@jivesoftware.com", new MessageListener() { + Chat chat = connection.getChatManager() + .createChat("jsmith@jivesoftware.com", new MessageListener() { public void processMessage(Chat chat, Message message) { System.out.println("Received message: " + message); @@ -21,8 +22,7 @@ Key Advantages : 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. + - 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. @@ -33,13 +33,24 @@ XMPP client to simple XMPP integrations such as sending notification messages an [Smack] - an [Ignite Realtime] community project. -------- +Resources +--------- + +- Bug Tracker: http://issues.igniterealtime.org/browse/SMACK +- Nightly Builds: http://www.igniterealtime.org/downloads/nightly_smack.jsp +- User Forum: http://community.igniterealtime.org/community/support/smack_users +- Dev Forum: http://community.igniterealtime.org/community/developers/smack +- Snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/igniterealtime/smack/ + + +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. -[Smack]:http://www.igniterealtime.org/projects/smack/index.jsp -[Ignite Realtime]:http://www.igniterealtime.org -[XMPP (Jabber)]:http://xmpp.org/ \ No newline at end of file +[Smack]: http://www.igniterealtime.org/projects/smack/index.jsp +[Ignite Realtime]: http://www.igniterealtime.org +[XMPP (Jabber)]: http://xmpp.org/