diff --git a/resources/META-INF/smack.providers b/resources/META-INF/smack.providers
deleted file mode 100644
index 68bfdf4b2..000000000
--- a/resources/META-INF/smack.providers
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
- query
- jabber:iq:private
- org.jivesoftware.smackx.PrivateDataManager$PrivateDataIQProvider
-
-
-
-
- query
- jabber:iq:time
- org.jivesoftware.smackx.packet.Time
-
-
-
-
- x
- jabber:x:roster
- org.jivesoftware.smackx.provider.RosterExchangeProvider
-
-
-
-
- x
- jabber:x:event
- org.jivesoftware.smackx.provider.MessageEventProvider
-
-
-
-
- html
- http://jabber.org/protocol/xhtml-im
- org.jivesoftware.smackx.provider.XHTMLExtensionProvider
-
-
-
\ No newline at end of file
diff --git a/resources/releasedocs/README.html b/resources/releasedocs/README.html
deleted file mode 100644
index 6cb6a3a79..000000000
--- a/resources/releasedocs/README.html
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
- Smack Readme
-
-
-
-
-
-
-
-
-
- version: |
- 1.2.1 |
-
- released: |
- September 28, 2003 |
-
-
-
-
-Thank you for downloading Smack!
-
-
-Start off by viewing the documentation
-that can be found in the "documentation" directory included with this distribution.
-
-Further information can be found on the
-Smack website. If you need help using or would like to make contributions or
-fixes to the code, please visit the
-online forum.
-
-
About the Distribution
-
-The smack.jar file in the main distribution folder is the only binary file
-required for embedding XMPP functionality into client applications. The optional
-smackx.jar contains the Smack extensions.
-The full source of the library is included in the source directory and
-can be compiled using the build scripts found in the
-build directory.
-
-
Changelog and Upgrading
-
-View the changelog for a list of changes since the
-last release.
-
-
License
-
-Use of this software is governed by the Apache License:
-
- Copyright (C) 2002-2003 Jive Software. All rights reserved.
- ====================================================================
- The Jive Software License (based on Apache Software License, Version 1.1)
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
- 3. The end-user documentation included with the redistribution,
- if any, must include the following acknowledgment:
- "This product includes software developed by
- Jive Software (http://www.jivesoftware.com)."
- Alternately, this acknowledgment may appear in the software itself,
- if and wherever such third-party acknowledgments normally appear.
-
- 4. The names "Smack" and "Jive Software" must not be used to
- endorse or promote products derived from this software without
- prior written permission. For written permission, please
- contact webmaster@jivesoftware.com.
-
- 5. Products derived from this software may not be called "Smack",
- nor may "Smack" appear in their name, without prior written
- permission of Jive Software.
-
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL JIVE SOFTWARE OR
- ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- SUCH DAMAGE.
- ====================================================================
-
-
-
diff --git a/resources/releasedocs/changelog.html b/resources/releasedocs/changelog.html
deleted file mode 100644
index 45455b4be..000000000
--- a/resources/releasedocs/changelog.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
- Smack Changelog
-
-
-
-
-
-
-
-1.2.1 - September 28, 2003
-
-
- - (SMACK-79) Added XHTML message support as a Smack extension, which allows sending
- richly formatted messages.
-
- (SMACK-88) Fixed bug with parsing registation packets that contain extra data.
-
- (SMACK-90) Added support for getting registration instructions.
-
- (SMACK-85) Exceptions in the PacketWriter now correctly generates a connection
- error event.
-
- (SMACK-84) Added isSecureConnection() method to XMPPConnection class.
-
- (SMACK-86) Added isJoined() method to GroupChat class.
-
- (SMACK-87, SMACK-82) Added the following methods related to rosters:
- Roster.contains(String user), Roster.getEntry(String user),
- RosterGroup.getEntry(String user), Roster.removeEntry(RosterEntry entry).
-
- (SMACK-73) Fixed bugs handling roster remove and update operations.
-
-
-
-1.2.0 - August 29, 2003
-
-
- - ! A package structure and documentation has been added for Smack extensions,
- which cover extensions to the XMPP protocol. The initial extensions are
- for message events (JEP 22), roster item exchange (JEP 93), entity
- time (JEP 90), and private data storage (JEP 49).
-
- ! The smack.providers file is now loaded from META-INF/smack.providers
- rather than WEB-INF/smack.providers. This location makes much more sense
- for generic JAR files, but may break existing provider implementations
- until the provider file is moved.
-
- Fixed IQ error sub-packets.
-
- The default packet extension handler didn't deal with empty
- elements well and also had a bug with attribute handling.
-
- Added a ConnectionListener feature which allows clients
- to be notified of normally closed connections, and connections
- closed due to errors.
-
- Fixed bug where the roster list could become corrupted after
- moving a user back and forther between groups.
-
- Fixed bug where in some cases presence packets were not getting
- tracked by the Roster class correctly.
-
- RosterListener has a new notification method that is called every time
- the presence of a user in the roster is updated.
-
- Added Roster.getEntries() method to return all entries in the roster.
-
- Added RosterGroup.contains(String) method to check to see if an XMPP
- address is part of the group.
-
- Minor fixes to Javadocs.
-
- Content can be copied and cleared from the debug window using
- a pop-up menu.
-
- The Chat constructor that took an existing chatID as an argument
- did not propertly initialize support for message listeners.
-
- Added support for anonymous logins.
-
- IQ is now an abstract class.
-
- Fixed bug where XHTML messgaes could cause parsing errors.
-
-
-
-1.1.1 - June 25, 2003
-
-
- - Setting Object packet properties was broken.
-
- Added getRoom() method to GroupChat.
-
-
-
-1.1.0 - June 19, 2003
-
-
- - New system to handle custom IQ packets and custom packet extensions through
- the new provider sub-package.
-
- Added packet filters for packet extensions.
-
- Added additional options for responding to subscription requests.
-
- Added method to retrieve the roster item count from roster packets.
-
- Added ability to set the ItemStatus on a roster packet.
-
- Added remove option to roster packet.
-
- Various documentation fixes/improvements.
-
- Fixed NullPointer exception on the setName method of the RosterEntry class.
-
- Groupchat class was listening for wrong message types -- fixed.
-
- Changed properties element name to "properties" instead of "x". Note: this will
- break compatability between earlier versions if they are trying to send packet
- properties back and forth. However, we thought it was best to make this change now.
-
- Turning on debugging via a system property wasn't working.
-
- Fixed spelling error in Roster class method name.
-
- Fixed stream not being closed properly.
-
- The "to contains" and "from contains" filters now ignore case.
-
-
-
-1.0.1 - April 30, 2003
-
-
- - Fixed bug that caused applets using Smack to crash with a security exception.
-
-
-
-1.0.0 - April 25, 2003
-
-
- - Initial official release.
-
-
-
-
\ No newline at end of file