You can download socket.io-client-0.7.0.jar in this page.
The MIT License (MIT)
socket.io-client-0.7.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.socket/socket.io-client/pom.properties META-INF/maven/io.socket/socket.io-client/pom.xml io.socket.backo.Backoff.class io.socket.client.Ack.class io.socket.client.IO.class io.socket.client.Manager.class io.socket.client.On.class io.socket.client.Socket.class io.socket.client.SocketIOException.class io.socket.client.Url.class io.socket.hasbinary.HasBinary.class io.socket.parser.Binary.class io.socket.parser.Packet.class io.socket.parser.Parser.class
socket.io-client-0.7.0.pom file content.
<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>io.socket</groupId> <artifactId>socket.io-client</artifactId> <version>0.7.0</version> <packaging>jar</packaging> <name>socket.io-client</name> <description>Socket.IO Client Library for Java</description> <url>https://github.com/socketio/socket.io-client-java</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <github.global.server>github</github.global.server> </properties> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/mit-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <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>socket.io-client-0.7.0</tag> </scm> <developers> <developer> <id>nkzawa</id> <name>Naoyuki Kanezawa</name> <email>naoyuki.kanezawa@gmail.com</email> </developer> </developers> <repositories> <repository> <id>sonatype-oss-public</id> <url>https://oss.sonatype.org/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <prerequisites> <maven>3.0.4</maven> </prerequisites> <dependencies> <dependency> <groupId>io.socket</groupId> <artifactId>engine.io-client</artifactId> <version>0.7.0</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.2.3</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> <compilerArgs> <arg>-Xlint:unchecked</arg> </compilerArgs> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <systemProperties> <property> <name>java.util.logging.config.file</name> <value>./src/test/resources/logging.properties</value> </property> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <id>npm-install</id> <phase>process-test-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <workingDirectory>./src/test/resources</workingDirectory> <executable>npm</executable> <arguments> <argument>install</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <message>Creating site for ${project.version}</message> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.socket</groupId> <artifactId>socket.io-client</artifactId> <version>0.7.0</version> </dependency>
If you think the following socket.io-client-0.7.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download socket.io-client-0.7.0.jar file