ko-ws-tyrus/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 27 Aug 2013 07:32:12 +0000
changeset 266 2d43ddd2ad12
parent 264 6656cca0a73a
child 304 3e5e3c96f9f1
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.apidesign</groupId>
     6     <artifactId>html</artifactId>
     7     <version>0.6-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.html</groupId>
    10   <artifactId>ko-ws-tyrus</artifactId>
    11   <version>0.6-SNAPSHOT</version>
    12   <name>Tyrus Based WebSockets</name>
    13   <url>http://maven.apache.org</url>
    14     <build>
    15         <plugins>
    16             <plugin>
    17                 <groupId>org.apache.maven.plugins</groupId>
    18                 <artifactId>maven-compiler-plugin</artifactId>
    19                 <version>2.3.2</version>
    20                 <configuration>
    21                     <source>1.7</source>
    22                     <target>1.7</target>
    23                 </configuration>
    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   </properties>
    37   <dependencies>
    38     <!-- compile only deps -->
    39     <dependency>
    40       <groupId>org.netbeans.api</groupId>
    41       <artifactId>org-openide-util-lookup</artifactId>
    42       <type>jar</type>
    43       <scope>provided</scope>
    44     </dependency>
    45 
    46     <!-- compile + runtime -->      
    47     <dependency>
    48       <groupId>${project.groupId}</groupId>
    49       <artifactId>net.java.html</artifactId>
    50       <version>${project.version}</version>
    51       <type>jar</type>
    52     </dependency>
    53     <dependency>
    54       <groupId>${project.groupId}</groupId>
    55       <artifactId>net.java.html.json</artifactId>
    56       <version>${project.version}</version>
    57       <type>jar</type>
    58     </dependency>
    59     <dependency>
    60       <groupId>org.json</groupId>
    61       <artifactId>json</artifactId>
    62       <version>20090211</version>
    63       <type>jar</type>
    64     </dependency>
    65     <dependency>
    66       <artifactId>javax.websocket-api</artifactId>
    67       <groupId>javax.websocket</groupId>
    68       <type>jar</type>
    69       <version>1.0</version>
    70     </dependency>
    71 
    72     <!-- tyrus runtime -->    
    73     <dependency>
    74         <groupId>org.glassfish.tyrus</groupId>
    75         <artifactId>tyrus-client</artifactId>
    76         <version>1.2.1</version>
    77         <scope>runtime</scope>
    78     </dependency>
    79     <dependency>
    80         <groupId>org.glassfish.tyrus</groupId>
    81         <artifactId>tyrus-container-grizzly</artifactId>
    82         <version>1.2.1</version>
    83         <scope>runtime</scope>
    84     </dependency>
    85     
    86     
    87     
    88     <!-- test only deps -->
    89     <dependency>
    90       <groupId>${project.groupId}</groupId>
    91       <artifactId>net.java.html.boot</artifactId>
    92       <version>${project.version}</version>
    93       <scope>test</scope>
    94       <type>jar</type>
    95     </dependency>
    96     <dependency>
    97       <groupId>${project.groupId}</groupId>
    98       <artifactId>net.java.html.json.tck</artifactId>
    99       <version>${project.version}</version>
   100       <scope>test</scope>
   101       <type>jar</type>
   102     </dependency>
   103     <dependency>
   104       <groupId>${project.groupId}</groupId>
   105       <artifactId>ko-fx</artifactId>
   106       <version>${project.version}</version>
   107       <scope>test</scope>
   108       <type>jar</type>
   109     </dependency>
   110     <dependency>
   111       <groupId>org.glassfish.grizzly</groupId>
   112       <artifactId>grizzly-http-server-core</artifactId>
   113       <version>2.3.3</version>
   114       <scope>test</scope>
   115       <type>jar</type>
   116     </dependency>
   117     <dependency>
   118       <groupId>org.glassfish.grizzly</groupId>
   119       <artifactId>grizzly-websockets-server</artifactId>
   120       <version>2.3.3</version>
   121       <scope>test</scope>
   122       <type>jar</type>
   123     </dependency>
   124     <dependency>
   125         <groupId>${project.groupId}</groupId>
   126         <artifactId>boot-fx</artifactId>
   127         <version>${project.version}</version>
   128         <scope>test</scope>
   129     </dependency>
   130     <dependency>
   131       <groupId>org.glassfish.grizzly</groupId>
   132       <artifactId>grizzly-http-server</artifactId>
   133       <version>2.3.3</version>
   134       <scope>test</scope>
   135     </dependency>
   136     <dependency>
   137         <groupId>org.glassfish.grizzly</groupId>
   138         <artifactId>grizzly-http-servlet</artifactId>
   139         <version>2.3.3</version>
   140         <scope>test</scope>
   141     </dependency>    
   142     <dependency>
   143         <groupId>javax.servlet</groupId>
   144         <artifactId>javax.servlet-api</artifactId>
   145         <scope>test</scope>
   146         <version>3.1.0</version>
   147     </dependency>
   148   </dependencies>
   149     <description>An implementation module that provides support for WebSocket protocol on JDK7. 
   150 No need to use it when running on JDK8 with FX WebView supporting WebSocket directly.</description>
   151 </project>