move package name

This commit is contained in:
nkzawa
2015-08-31 03:23:03 +09:00
parent 742e824a49
commit d0039f7910
31 changed files with 60 additions and 60 deletions

View File

@@ -1,15 +1,15 @@
# Socket.IO-client.java
[![Build Status](https://travis-ci.org/nkzawa/socket.io-client.java.png?branch=master)](https://travis-ci.org/nkzawa/socket.io-client.java)
# Socket.IO-client Java
[![Build Status](https://travis-ci.org/socketio/socket.io-client-java.png?branch=master)](https://travis-ci.org/socketio/socket.io-client-java)
This is the Socket.IO v1.x Client Library for Java, which is simply ported from the [JavaScript client](https://github.com/Automattic/socket.io-client).
This is the Socket.IO v1.x Client Library for Java, which is simply ported from the [JavaScript client](https://github.com/socketio/socket.io-client).
See also:
- [Android chat demo](https://github.com/nkzawa/socket.io-android-chat)
- [engine.io-client.java](https://github.com/nkzawa/engine.io-client.java)
- [engine.io-client-java](https://github.com/socketio/engine.io-client-java)
## Installation
The latest artifact is available on Maven Central. You'll also need [dependencies](http://nkzawa.github.io/socket.io-client.java/dependencies.html) to install.
The latest artifact is available on Maven Central. You'll also need [dependencies](http://socketio.github.io/socket.io-client-java/dependencies.html) to install.
### Maven
Add the following dependency to your `pom.xml`.
@@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
```xml
<dependencies>
<dependency>
<groupId>com.github.nkzawa</groupId>
<groupId>io.socket</groupId>
<artifactId>socket.io-client</artifactId>
<version>0.6.0</version>
</dependency>
@@ -28,11 +28,11 @@ Add the following dependency to your `pom.xml`.
Add it as a gradle dependency for Android Studio, in `build.gradle`:
```groovy
compile 'com.github.nkzawa:socket.io-client:0.6.0'
compile 'io.socket:socket.io-client:0.6.0'
```
## Usage
Socket.IO-client.java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:
Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:
```java
socket = IO.socket("http://localhost");
@@ -131,7 +131,7 @@ socket = IO.socket("https://localhost", opts);
See the Javadoc for more details.
http://nkzawa.github.io/socket.io-client.java/apidocs/
http://socketio.github.io/socket.io-client-java/apidocs/
## Features
This library supports all of the features the JS client does, including events, options and upgrading transport. Android is fully supported.

10
pom.xml
View File

@@ -1,12 +1,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.nkzawa</groupId>
<groupId>io.socket</groupId>
<artifactId>socket.io-client</artifactId>
<version>0.6.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>socket.io-client</name>
<description>Socket.IO Client Library for Java</description>
<url>https://github.com/nkzawa/socket.io-client.java</url>
<url>https://github.com/socketio/socket.io-client-java</url>
<parent>
<groupId>org.sonatype.oss</groupId>
@@ -27,9 +27,9 @@
</licenses>
<scm>
<url>https://github.com/nkzawa/socket.io-client.java</url>
<connection>scm:git:git://github.com/nkzawa/socket.io-client.java.git</connection>
<developerConnection>scm:git:git@github.com:nkzawa/socket.io-client.java.git</developerConnection>
<url>https://github.com/socketio/socket.io-client-java</url>
<connection>scm:git:git://github.com/socketio/socket.io-client-java.git</connection>
<developerConnection>scm:git:git@github.com:socketio/socket.io-client-java.git</developerConnection>
<tag>HEAD</tag>
</scm>

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.backo;
package io.socket.backo;
public class Backoff {

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
/**
* Acknowledgement.

View File

@@ -1,7 +1,7 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.socketio.parser.Parser;
import io.socket.parser.Parser;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;

View File

@@ -1,9 +1,9 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.backo.Backoff;
import io.socket.backo.Backoff;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.socketio.parser.Packet;
import com.github.nkzawa.socketio.parser.Parser;
import io.socket.parser.Packet;
import io.socket.parser.Parser;
import com.github.nkzawa.thread.EventThread;
import javax.net.ssl.HostnameVerifier;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;

View File

@@ -1,9 +1,9 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.hasbinary.HasBinary;
import com.github.nkzawa.socketio.parser.Packet;
import com.github.nkzawa.socketio.parser.Parser;
import io.socket.hasbinary.HasBinary;
import io.socket.parser.Packet;
import io.socket.parser.Parser;
import com.github.nkzawa.thread.EventThread;
import org.json.JSONArray;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
public class SocketIOException extends Exception {

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import java.net.MalformedURLException;
import java.net.URI;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.hasbinary;
package io.socket.hasbinary;
import org.json.JSONArray;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
import org.json.JSONArray;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
public class Packet<T> {

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
import com.github.nkzawa.emitter.Emitter;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.backo;
package io.socket.backo;
import org.junit.Test;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import org.junit.After;
import org.junit.Before;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -21,17 +21,17 @@ public class ExecutionTest extends Connection {
@Test(timeout = TIMEOUT)
public void execConnection() throws InterruptedException, IOException {
exec("com.github.nkzawa.socketio.client.executions.Connection");
exec("io.socket.client.executions.Connection");
}
@Test(timeout = TIMEOUT)
public void execConnectionFailure() throws InterruptedException, IOException {
exec("com.github.nkzawa.socketio.client.executions.ConnectionFailure");
exec("io.socket.client.executions.ConnectionFailure");
}
@Test(timeout = TIMEOUT)
public void execImmediateClose() throws InterruptedException, IOException {
exec("com.github.nkzawa.socketio.client.executions.ImmediateClose");
exec("io.socket.client.executions.ImmediateClose");
}
private void exec(String mainClass) throws InterruptedException, IOException {

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;
import org.junit.After;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.engineio.client.Transport;

View File

@@ -1,7 +1,7 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.util.Optional;
import io.socket.util.Optional;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.client;
package io.socket.client;
import org.junit.Test;
import org.junit.runner.RunWith;

View File

@@ -1,8 +1,8 @@
package com.github.nkzawa.socketio.client.executions;
package io.socket.client.executions;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.socketio.client.IO;
import com.github.nkzawa.socketio.client.Socket;
import io.socket.client.IO;
import io.socket.client.Socket;
import java.net.URISyntaxException;

View File

@@ -1,8 +1,8 @@
package com.github.nkzawa.socketio.client.executions;
package io.socket.client.executions;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.socketio.client.IO;
import com.github.nkzawa.socketio.client.Socket;
import io.socket.client.IO;
import io.socket.client.Socket;
import java.net.URISyntaxException;

View File

@@ -1,8 +1,8 @@
package com.github.nkzawa.socketio.client.executions;
package io.socket.client.executions;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.socketio.client.IO;
import com.github.nkzawa.socketio.client.Socket;
import io.socket.client.IO;
import io.socket.client.Socket;
import java.net.URISyntaxException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.hasbinary;
package io.socket.hasbinary;
import org.json.JSONArray;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
import com.github.nkzawa.emitter.Emitter;
import org.json.JSONArray;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
import com.github.nkzawa.emitter.Emitter;
import org.json.JSONArray;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.socketio.parser;
package io.socket.parser;
import org.json.JSONArray;
import org.json.JSONException;

View File

@@ -1,4 +1,4 @@
package com.github.nkzawa.util;
package io.socket.util;
import java.util.NoSuchElementException;