File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed
main/java/com/pusher/client
test/java/com/pusher/client Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ repositories {
4343
4444dependencies {
4545 compile " com.google.code.gson:gson:2.2.2"
46- compile " com.pusher: java-websocket:1.4.1 "
46+ compile " org. java-websocket:Java-WebSocket: 1.4.0 "
4747 testCompile " org.mockito:mockito-all:1.8.5"
4848 testCompile " org.powermock:powermock-module-junit4:1.4.11"
4949 testCompile " org.powermock:powermock-api-mockito:1.4.11"
Original file line number Diff line number Diff line change 1010import javax .net .ssl .SSLException ;
1111import javax .net .ssl .SSLSocketFactory ;
1212
13- import com . pusher .java_websocket .client .WebSocketClient ;
14- import com . pusher .java_websocket .handshake .ServerHandshake ;
13+ import org .java_websocket .client .WebSocketClient ;
14+ import org .java_websocket .handshake .ServerHandshake ;
1515
1616/**
1717 * A thin wrapper around the WebSocketClient class from the Java-WebSocket
Original file line number Diff line number Diff line change 1414
1515import javax .net .ssl .SSLException ;
1616
17- import com . pusher .java_websocket .handshake .ServerHandshake ;
17+ import org .java_websocket .handshake .ServerHandshake ;
1818
1919import com .google .gson .Gson ;
2020
Original file line number Diff line number Diff line change 11package com .pusher .client .connection .websocket ;
22
3- import com . pusher .java_websocket .handshake .ServerHandshake ;
3+ import org .java_websocket .handshake .ServerHandshake ;
44
55public interface WebSocketListener {
66
Original file line number Diff line number Diff line change 33import java .net .URI ;
44import java .net .URISyntaxException ;
55
6- import com . pusher .java_websocket .client .WebSocketClient ;
7- import com . pusher .java_websocket .handshake .ServerHandshake ;
6+ import org .java_websocket .client .WebSocketClient ;
7+ import org .java_websocket .handshake .ServerHandshake ;
88
99public class SimpleWebSocket extends WebSocketClient {
1010 public static void main (final String [] args ) throws URISyntaxException {
Original file line number Diff line number Diff line change 3131import com .pusher .client .connection .websocket .WebSocketListener ;
3232import com .pusher .client .util .DoNothingExecutor ;
3333import com .pusher .client .util .Factory ;
34- import com . pusher .java_websocket .handshake .ServerHandshake ;
34+ import org .java_websocket .handshake .ServerHandshake ;
3535
3636@ RunWith (MockitoJUnitRunner .class )
3737public class EndToEndTest {
Original file line number Diff line number Diff line change 88
99import javax .net .ssl .SSLException ;
1010
11- import com . pusher .java_websocket .handshake .ServerHandshake ;
11+ import org .java_websocket .handshake .ServerHandshake ;
1212import org .junit .Before ;
1313import org .junit .Test ;
1414import org .junit .runner .RunWith ;
You can’t perform that action at this time.
0 commit comments