Download ko-ws-tyrus-1.0.jar file

Introduction

You can download ko-ws-tyrus-1.0.jar in this page.

License

Open Source

Type List

ko-ws-tyrus-1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.netbeans.html/ko-ws-tyrus/pom.properties
META-INF/maven/org.netbeans.html/ko-ws-tyrus/pom.xml
org.netbeans.html.wstyrus.LoadJSON.class
org.netbeans.html.wstyrus.TyrusContext.class

Pom

ko-ws-tyrus-1.0.pom file content.

<?xml version="1.0"?>
<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>
  <parent>
    <groupId>org.netbeans.html</groupId>
    <artifactId>pom</artifactId>
    <version>1.0</version>
  </parent>
  <groupId>org.netbeans.html</groupId>
  <artifactId>ko-ws-tyrus</artifactId>
  <version>1.0</version>
  <packaging>bundle</packaging>
  <name>Tyrus Based WebSockets</name>
  <url>http://maven.apache.org</url>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.netbeans.html</groupId>
                <artifactId>html4j-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <skip>false</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <bundleSymbolicName>org.netbeans.html.ko-ws-tyrus</bundleSymbolicName>
  </properties>
  <dependencies>
    <!-- compile only deps -->
    <dependency>
      <groupId>org.netbeans.api</groupId>
      <artifactId>org-openide-util-lookup</artifactId>
      <type>jar</type>
      <scope>provided</scope>
    </dependency>

    <!-- compile + runtime -->      
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>net.java.html</artifactId>
      <version>${project.version}</version>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>net.java.html.json</artifactId>
      <version>${project.version}</version>
      <type>jar</type>
    </dependency>
    <dependency>
        <groupId>de.twentyeleven.skysail</groupId>
        <artifactId>org.json-osgi</artifactId>
    </dependency>
    <dependency>
      <artifactId>javax.websocket-api</artifactId>
      <groupId>javax.websocket</groupId>
      <type>jar</type>
      <version>1.0</version>
    </dependency>

    <!-- tyrus runtime -->    
    <dependency>
        <groupId>org.glassfish.tyrus</groupId>
        <artifactId>tyrus-client</artifactId>
        <version>1.3.1</version>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.glassfish.tyrus</groupId>
        <artifactId>tyrus-container-grizzly-client</artifactId>
        <version>1.3.1</version>
        <scope>runtime</scope>
    </dependency>
    
    
    
    <!-- test only deps -->
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>net.java.html.boot</artifactId>
      <version>${project.version}</version>
      <scope>provided</scope>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>net.java.html.json.tck</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>ko4j</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>org.glassfish.grizzly</groupId>
      <artifactId>grizzly-http-server-core</artifactId>
      <version>${grizzly.version}</version>
      <scope>test</scope>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>org.glassfish.grizzly</groupId>
      <artifactId>grizzly-websockets-server</artifactId>
      <version>${grizzly.version}</version>
      <scope>test</scope>
      <type>jar</type>
    </dependency>
    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>net.java.html.boot.fx</artifactId>
        <version>${project.version}</version>
        <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.glassfish.grizzly</groupId>
      <artifactId>grizzly-http-server</artifactId>
      <version>${grizzly.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.glassfish.grizzly</groupId>
        <artifactId>grizzly-http-servlet</artifactId>
        <version>${grizzly.version}</version>
        <scope>test</scope>
    </dependency>    
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <scope>test</scope>
        <version>3.1.0</version>
    </dependency>
  </dependencies>
    <description>An implementation module that provides support for WebSocket protocol on JDK7. 
No need to use it when running on JDK8 with FX WebView supporting WebSocket directly.</description>
</project>

POM Entry

<dependency>
   <groupId>org.netbeans.html</groupId>
   <artifactId>ko-ws-tyrus</artifactId>
   <version>1.0</version>
</dependency>

Download

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



Download ko-ws-tyrus-1.0.jar file




PreviousNext

Related