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