Skip to content

Commit

Permalink
Upgrade Smack library to 3.2.0. Fixes [JENKINS-7060], [JENKINS-8426] …
Browse files Browse the repository at this point in the history
…and [JENKINS-5345]
  • Loading branch information
kutzi committed May 14, 2011
1 parent 36a6797 commit 2427221
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -42,13 +42,13 @@
<dependency>
<groupId>jivesoftware</groupId>
<artifactId>smack</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jivesoftware</groupId>
<artifactId>smackx</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Expand Up @@ -8,6 +8,7 @@
import java.util.logging.Level;
import java.util.logging.Logger;

import org.jivesoftware.smack.Connection;
import org.jivesoftware.smack.ConnectionListener;
import org.jivesoftware.smack.PacketListener;
import org.jivesoftware.smack.XMPPConnection;
Expand All @@ -25,15 +26,15 @@ public class JabberConnectionDebugger implements SmackDebugger {
private static final Logger LOGGER = Logger.getLogger(JabberConnectionDebugger.class.getName());
private static final Level MIN_LOG_LEVEL = Level.FINE;

private final XMPPConnection connection;
private final Connection connection;
private Writer writer;
private Reader reader;

private PacketListener listener;

private ConnectionListener connListener;

public JabberConnectionDebugger(XMPPConnection connection, Writer writer, Reader reader) {
public JabberConnectionDebugger(Connection connection, Writer writer, Reader reader) {
this.connection = connection;
this.writer = writer;
this.reader = reader;
Expand Down

0 comments on commit 2427221

Please sign in to comment.