Download jboss-websocket-api_1.0_spec-1.0.0.final.jar file

Introduction

You can download jboss-websocket-api_1.0_spec-1.0.0.final.jar in this page.

License

Common Development and Distribution License

Type List

jboss-websocket-api_1.0_spec-1.0.0.final.jar file has the following types.

META-INF.maven.org.jboss.spec.javax.websocket.jboss-websocket-api_1.0_spec.pom.properties
META-INF.maven.org.jboss.spec.javax.websocket.jboss-websocket-api_1.0_spec.pom.xml
META-INF/INDEX.LIST
META-INF/LICENSE
META-INF/MANIFEST.MF
javax.websocket.ClientEndpoint.class
javax.websocket.ClientEndpointConfig.class
javax.websocket.CloseReason.class
javax.websocket.ContainerProvider.class
javax.websocket.DecodeException.class
javax.websocket.Decoder.class
javax.websocket.DefaultClientEndpointConfig.class
javax.websocket.DeploymentException.class
javax.websocket.EncodeException.class
javax.websocket.Encoder.class
javax.websocket.Endpoint.class
javax.websocket.EndpointConfig.class
javax.websocket.Extension.class
javax.websocket.HandshakeResponse.class
javax.websocket.MessageHandler.class
javax.websocket.OnClose.class
javax.websocket.OnError.class
javax.websocket.OnMessage.class
javax.websocket.OnOpen.class
javax.websocket.PongMessage.class
javax.websocket.RemoteEndpoint.class
javax.websocket.SendHandler.class
javax.websocket.SendResult.class
javax.websocket.Session.class
javax.websocket.SessionException.class
javax.websocket.WebSocketContainer.class
javax.websocket.server.DefaultServerEndpointConfig.class
javax.websocket.server.HandshakeRequest.class
javax.websocket.server.PathParam.class
javax.websocket.server.ServerApplicationConfig.class
javax.websocket.server.ServerContainer.class
javax.websocket.server.ServerEndpoint.class
javax.websocket.server.ServerEndpointConfig.class

Pom

jboss-websocket-api_1.0_spec-1.0.0.final.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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>10</version>
  </parent>

  <groupId>org.jboss.spec.javax.websocket</groupId>
  <artifactId>jboss-websocket-api_1.0_spec</artifactId>
  <version>1.0.0.Final</version>
  <packaging>jar</packaging>

  <name>Java(TM) API for WebSocket</name>
  <description>JSR-356: Java(TM) API for WebSocket 1.0 classes</description>

  <licenses>
    <license>
      <name>Common Development and Distribution License</name>
      <url>http://repository.jboss.org/licenses/cddl.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>GNU General Public License, Version 2 with the Classpath Exception</name>
      <url>http://repository.jboss.org/licenses/gpl-2.0-ce.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:git@github.com:jboss/jboss-websocket-api_spec.git</connection>
    <developerConnection>scm:git:git@github.com:jboss/jboss-websocket-api_spec.git</developerConnection>
    <url>https://github.com/jboss/jboss-websocket-api_spec</url>
    <tag>jboss-websocket-api_1.0_spec-1.0.0.Final</tag>
  </scm>

  <build>
    <resources>
      <resource>
        <directory>${project.basedir}/src/main/resources</directory>
      </resource>
      <!-- Include LICENSE in the META-INF directory -->
      <resource>
        <directory>${project.basedir}</directory>
        <includes>
          <include>LICENSE</include>
        </includes>
        <targetPath>META-INF</targetPath>
      </resource>
    </resources>

    <plugins>
      <!-- Generate the OSGi jar Manifest. -->
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <archive>
            <manifest>
              <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
            </manifest>
          </archive>
          <instructions>
            <Specification-Title>JSR 356: Java(TM) API for WebSocket Specification</Specification-Title>
            <Specification-Vendor>Oracle</Specification-Vendor>
            <Specification-Version>1.0</Specification-Version>

            <Export-Package>
              javax.websocket*;version=1.0
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
      <!-- Add the OSGi Manifest to the main jar -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Specification-Title>JSR 356: Java(TM) API for WebSocket Specification</Specification-Title>
              <Specification-Vendor>Oracle</Specification-Vendor>
              <Specification-Version>1.0</Specification-Version>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>org.jboss.spec.javax.websocket</groupId>
   <artifactId>jboss-websocket-api_1.0_spec</artifactId>
   <version>1.0.0.final</version>
</dependency>

Download

If you think the following jboss-websocket-api_1.0_spec-1.0.0.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jboss-websocket-api_1.0_spec-1.0.0.final.jar file




PreviousNext

Related