ko-ws-tyrus/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 21 Sep 2015 21:19:13 +0200
changeset 992 6f1a8b251b7d
parent 989 af449e1eaedc
child 1005 c7f11fbd5475
permissions -rw-r--r--
[maven-release-plugin] prepare release release-1.2.3
     1 <?xml version="1.0"?>
     2 <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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <groupId>org.netbeans.html</groupId>
     6     <artifactId>pom</artifactId>
     7     <version>1.2.3</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>ko-ws-tyrus</artifactId>
    11   <version>1.2.3</version>
    12   <packaging>bundle</packaging>
    13   <name>Tyrus Based WebSockets</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.felix</groupId>
    19                 <artifactId>maven-bundle-plugin</artifactId>
    20             </plugin>
    21             <plugin>
    22                 <groupId>org.netbeans.html</groupId>
    23                 <artifactId>html4j-maven-plugin</artifactId>
    24             </plugin>
    25             <plugin>
    26                 <groupId>org.apache.maven.plugins</groupId>
    27                 <artifactId>maven-javadoc-plugin</artifactId>
    28                 <configuration>
    29                     <skip>false</skip>
    30                 </configuration>
    31             </plugin>
    32         </plugins>
    33     </build>
    34     <properties>
    35     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    36     <bundleSymbolicName>org.netbeans.html.ko-ws-tyrus</bundleSymbolicName>
    37   </properties>
    38   <dependencies>
    39     <!-- compile only deps -->
    40     <dependency>
    41       <groupId>org.netbeans.api</groupId>
    42       <artifactId>org-openide-util-lookup</artifactId>
    43       <type>jar</type>
    44       <scope>provided</scope>
    45     </dependency>
    46 
    47     <!-- compile + runtime -->      
    48     <dependency>
    49       <groupId>${project.groupId}</groupId>
    50       <artifactId>net.java.html</artifactId>
    51       <version>${project.version}</version>
    52       <type>jar</type>
    53     </dependency>
    54     <dependency>
    55       <groupId>${project.groupId}</groupId>
    56       <artifactId>net.java.html.json</artifactId>
    57       <version>${project.version}</version>
    58       <type>jar</type>
    59     </dependency>
    60     <dependency>
    61         <groupId>de.twentyeleven.skysail</groupId>
    62         <artifactId>org.json-osgi</artifactId>
    63     </dependency>
    64     <dependency>
    65       <artifactId>javax.websocket-api</artifactId>
    66       <groupId>javax.websocket</groupId>
    67       <type>jar</type>
    68       <version>1.0</version>
    69     </dependency>
    70 
    71     <!-- tyrus runtime -->    
    72     <dependency>
    73         <groupId>org.glassfish.tyrus</groupId>
    74         <artifactId>tyrus-client</artifactId>
    75         <version>1.3.1</version>
    76         <scope>runtime</scope>
    77     </dependency>
    78     <dependency>
    79         <groupId>org.glassfish.tyrus</groupId>
    80         <artifactId>tyrus-container-grizzly-client</artifactId>
    81         <version>1.3.1</version>
    82         <scope>runtime</scope>
    83     </dependency>
    84     
    85     
    86     
    87     <!-- test only deps -->
    88     <dependency>
    89       <groupId>${project.groupId}</groupId>
    90       <artifactId>net.java.html.boot</artifactId>
    91       <version>${project.version}</version>
    92       <scope>provided</scope>
    93       <type>jar</type>
    94     </dependency>
    95     <dependency>
    96       <groupId>${project.groupId}</groupId>
    97       <artifactId>net.java.html.json.tck</artifactId>
    98       <version>${project.version}</version>
    99       <scope>test</scope>
   100       <type>jar</type>
   101     </dependency>
   102     <dependency>
   103       <groupId>${project.groupId}</groupId>
   104       <artifactId>ko4j</artifactId>
   105       <version>${project.version}</version>
   106       <scope>test</scope>
   107       <type>jar</type>
   108     </dependency>
   109     <dependency>
   110       <groupId>org.glassfish.grizzly</groupId>
   111       <artifactId>grizzly-http-server-core</artifactId>
   112       <version>${grizzly.version}</version>
   113       <scope>test</scope>
   114       <type>jar</type>
   115     </dependency>
   116     <dependency>
   117       <groupId>org.glassfish.grizzly</groupId>
   118       <artifactId>grizzly-websockets-server</artifactId>
   119       <version>${grizzly.version}</version>
   120       <scope>test</scope>
   121       <type>jar</type>
   122     </dependency>
   123     <dependency>
   124         <groupId>${project.groupId}</groupId>
   125         <artifactId>net.java.html.boot.fx</artifactId>
   126         <version>${project.version}</version>
   127         <scope>test</scope>
   128     </dependency>
   129     <dependency>
   130       <groupId>org.glassfish.grizzly</groupId>
   131       <artifactId>grizzly-http-server</artifactId>
   132       <version>${grizzly.version}</version>
   133       <scope>test</scope>
   134     </dependency>
   135     <dependency>
   136         <groupId>org.glassfish.grizzly</groupId>
   137         <artifactId>grizzly-http-servlet</artifactId>
   138         <version>${grizzly.version}</version>
   139         <scope>test</scope>
   140     </dependency>    
   141     <dependency>
   142         <groupId>javax.servlet</groupId>
   143         <artifactId>javax.servlet-api</artifactId>
   144         <scope>test</scope>
   145         <version>3.1.0</version>
   146     </dependency>
   147   </dependencies>
   148     <description>An implementation module that provides support for WebSocket protocol on JDK7. 
   149 No need to use it when running on JDK8 with FX WebView supporting WebSocket directly.</description>
   150 </project>