Download Java-WebSocket-1.3.4.jar file

Introduction

You can download Java-WebSocket-1.3.4.jar in this page.

License

MIT License

Type List

Java-WebSocket-1.3.4.jar file has the following types.

META-INF.maven.org.java-websocket.Java-WebSocket.pom.properties
META-INF.maven.org.java-websocket.Java-WebSocket.pom.xml
META-INF/MANIFEST.MF
org.java_websocket.AbstractWebSocket.class
org.java_websocket.AbstractWrappedByteChannel.class
org.java_websocket.SSLSocketChannel.class
org.java_websocket.SSLSocketChannel2.class
org.java_websocket.SocketChannelIOHelper.class
org.java_websocket.WebSocket.class
org.java_websocket.WebSocketAdapter.class
org.java_websocket.WebSocketFactory.class
org.java_websocket.WebSocketImpl.class
org.java_websocket.WebSocketListener.class
org.java_websocket.WrappedByteChannel.class
org.java_websocket.client.AbstractClientProxyChannel.class
org.java_websocket.client.WebSocketClient.class
org.java_websocket.drafts.Draft.class
org.java_websocket.drafts.Draft_10.class
org.java_websocket.drafts.Draft_17.class
org.java_websocket.drafts.Draft_6455.class
org.java_websocket.drafts.Draft_75.class
org.java_websocket.drafts.Draft_76.class
org.java_websocket.exceptions.IncompleteHandshakeException.class
org.java_websocket.exceptions.InvalidDataException.class
org.java_websocket.exceptions.InvalidFrameException.class
org.java_websocket.exceptions.InvalidHandshakeException.class
org.java_websocket.exceptions.LimitExedeedException.class
org.java_websocket.exceptions.NotSendableException.class
org.java_websocket.exceptions.WebsocketNotConnectedException.class
org.java_websocket.framing.BinaryFrame.class
org.java_websocket.framing.CloseFrame.class
org.java_websocket.framing.ContinuousFrame.class
org.java_websocket.framing.ControlFrame.class
org.java_websocket.framing.DataFrame.class
org.java_websocket.framing.Framedata.class
org.java_websocket.framing.FramedataImpl1.class
org.java_websocket.framing.PingFrame.class
org.java_websocket.framing.PongFrame.class
org.java_websocket.framing.TextFrame.class
org.java_websocket.handshake.ClientHandshake.class
org.java_websocket.handshake.ClientHandshakeBuilder.class
org.java_websocket.handshake.HandshakeBuilder.class
org.java_websocket.handshake.HandshakeImpl1Client.class
org.java_websocket.handshake.HandshakeImpl1Server.class
org.java_websocket.handshake.Handshakedata.class
org.java_websocket.handshake.HandshakedataImpl1.class
org.java_websocket.handshake.ServerHandshake.class
org.java_websocket.handshake.ServerHandshakeBuilder.class
org.java_websocket.server.CustomSSLWebSocketServerFactory.class
org.java_websocket.server.DefaultSSLWebSocketServerFactory.class
org.java_websocket.server.DefaultWebSocketServerFactory.class
org.java_websocket.server.WebSocketServer.class
org.java_websocket.util.Base64.class
org.java_websocket.util.ByteBufferUtils.class
org.java_websocket.util.Charsetfunctions.class

Pom

Java-WebSocket-1.3.4.pom file content.

<?xml version="1.0" encoding="UTF-8"?><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>org.java-websocket</groupId>
  <artifactId>Java-WebSocket</artifactId>
  <packaging>jar</packaging>
  <version>1.3.4</version>
  <name>Java-WebSocket</name>
  <description>A barebones WebSocket client and server implementation written 100% in Java</description>
  <url>https://github.com/TooTallNate/Java-WebSocket</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/TooTallNate/Java-WebSocket</url>
  </scm>
  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
        <configuration>
          <serverId>ossrh</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <autoReleaseAfterClose>true</autoReleaseAfterClose>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</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.9.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <developers>
    <developer>
      <name>Nathan Rajlich</name>
      <url>https://github.com/TooTallNate</url>
      <email>nathan@tootallnate.net</email>
    </developer>
    <developer>
      <name>Marcel Prestel</name>
      <url>https://github.com/marci4</url>
      <email>admin@marci4.de</email>
    </developer>
  </developers>
</project>


POM Entry

<dependency>
   <groupId>org.java-websocket</groupId>
   <artifactId>Java-WebSocket</artifactId>
   <version>1.3.4</version>
</dependency>

Download

If you think the following Java-WebSocket-1.3.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download Java-WebSocket-1.3.4.jar file




PreviousNext

Related