Download Java-WebSocket-1.3.0.jar file

Introduction

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

License

MIT License

Type List

Java-WebSocket-1.3.0.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.AbstractWrappedByteChannel.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.DefaultSSLWebSocketClientFactory.class
org.java_websocket.client.DefaultWebSocketClientFactory.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_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.CloseFrame.class
org.java_websocket.framing.CloseFrameBuilder.class
org.java_websocket.framing.FrameBuilder.class
org.java_websocket.framing.Framedata.class
org.java_websocket.framing.FramedataImpl1.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.DefaultSSLWebSocketServerFactory.class
org.java_websocket.server.DefaultWebSocketServerFactory.class
org.java_websocket.server.WebSocketServer.class
org.java_websocket.util.Base64.class
org.java_websocket.util.Charsetfunctions.class

Pom

Java-WebSocket-1.3.0.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">
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <scm>
        <connection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</connection>
        <developerConnection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</developerConnection>
        <url>git@github.com:TooTallNate/Java-WebSocket.git</url>
    </scm>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.java-websocket</groupId>
    <artifactId>Java-WebSocket</artifactId>
    <version>1.3.0</version>
    <packaging>jar</packaging>
    <name>Java WebSocket</name>
    <url>http://java-websocket.org/</url>
    <description>A barebones WebSocket client and server implementation written in 100% Java</description>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.6</java.version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </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</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <developers>
        <developer>
            <id>TooTallNate</id>
            <name>Nathan Rajlich</name>
            <email>nathan@tootallnate.net</email>
            <url>https://github.com/TooTallNate</url>
            <roles>
                <role>founder</role>
            </roles>
        </developer>
        <developer>
            <id>Davidiusdadi</id>
            <name>David Rohmer</name>
            <email>rohmer.david@gmail.com</email>
            <url>https://github.com/Davidiusdadi</url>
            <roles>
                <role>maintainer</role>
            </roles>
        </developer>
    </developers>
    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
        </license>
    </licenses>
    <profiles>                                                                                                                      
      <profile>                                                                                                                     
        <id>release-sign-artifacts</id>                                                                                             
        <activation>                                                                                                                
          <property><name>performRelease</name><value>true</value></property>                                                       
        </activation>                                                                                                               
        <build>                                                                                                                     
          <plugins>                                                                                                                 
            <plugin>                                                                                                                
              <groupId>org.apache.maven.plugins</groupId>                                                                           
              <artifactId>maven-gpg-plugin</artifactId>                                                                             
              <version>1.1</version>                                                                                                
              <executions>                                                                                                          
                <execution>                                                                                                         
                  <id>sign-artifacts</id>                                                                                           
                  <phase>verify</phase>                                                                                             
                  <goals>                                                                                                           
                    <goal>sign</goal>                                                                                               
                  </goals>                                                                                                          
                </execution>                                                                                                        
              </executions>                                                                                                         
              <configuration>                                                                                                       
                <keyname>rohmer.david@gmail.com&gt;</keyname>                                                                                          
              </configuration>                                                                                                      
            </plugin>                                                                                                               
          </plugins>                                                                                                                
        </build>                                                                                                                    
      </profile>                                                                                                                    
    </profiles>     
</project>

POM Entry

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

Download

If you think the following Java-WebSocket-1.3.0.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.0.jar file




PreviousNext

Related