ko-ws-tyrus/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 25 Aug 2013 14:40:16 +0200
changeset 260 23e2ad7e6d23
child 263 e52df26d579b
permissions -rw-r--r--
Tyrus based implementation of WebSockets for JDK7
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign</groupId>
     7     <artifactId>html</artifactId>
     8     <version>0.5-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.html</groupId>
    11   <artifactId>ko-ws-tyrus</artifactId>
    12   <version>0.5-SNAPSHOT</version>
    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         </plugins>
    27     </build>
    28     <properties>
    29     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    30   </properties>
    31   <dependencies>
    32     <!-- compile only deps -->
    33     <dependency>
    34       <groupId>org.netbeans.api</groupId>
    35       <artifactId>org-openide-util-lookup</artifactId>
    36       <type>jar</type>
    37       <scope>provided</scope>
    38     </dependency>
    39 
    40     <!-- compile + runtime -->      
    41     <dependency>
    42       <groupId>${project.groupId}</groupId>
    43       <artifactId>net.java.html</artifactId>
    44       <version>${project.version}</version>
    45       <type>jar</type>
    46     </dependency>
    47     <dependency>
    48       <groupId>${project.groupId}</groupId>
    49       <artifactId>net.java.html.json</artifactId>
    50       <version>${project.version}</version>
    51       <type>jar</type>
    52     </dependency>
    53     <dependency>
    54       <groupId>org.json</groupId>
    55       <artifactId>json</artifactId>
    56       <version>20090211</version>
    57       <type>jar</type>
    58     </dependency>
    59     <dependency>
    60       <artifactId>javax.websocket-api</artifactId>
    61       <groupId>javax.websocket</groupId>
    62       <type>jar</type>
    63       <version>1.0</version>
    64     </dependency>
    65 
    66     <!-- tyrus runtime -->    
    67     <dependency>
    68         <groupId>org.glassfish.tyrus</groupId>
    69         <artifactId>tyrus-client</artifactId>
    70         <version>1.2.1</version>
    71         <scope>runtime</scope>
    72     </dependency>
    73     <dependency>
    74         <groupId>org.glassfish.tyrus</groupId>
    75         <artifactId>tyrus-container-grizzly</artifactId>
    76         <version>1.2.1</version>
    77         <scope>runtime</scope>
    78     </dependency>
    79     
    80     
    81     
    82     <!-- test only deps -->
    83     <dependency>
    84       <groupId>${project.groupId}</groupId>
    85       <artifactId>net.java.html.boot</artifactId>
    86       <version>${project.version}</version>
    87       <scope>test</scope>
    88       <type>jar</type>
    89     </dependency>
    90     <dependency>
    91       <groupId>${project.groupId}</groupId>
    92       <artifactId>net.java.html.json.tck</artifactId>
    93       <version>${project.version}</version>
    94       <scope>test</scope>
    95       <type>jar</type>
    96     </dependency>
    97     <dependency>
    98       <groupId>${project.groupId}</groupId>
    99       <artifactId>ko-fx</artifactId>
   100       <version>${project.version}</version>
   101       <scope>test</scope>
   102       <type>jar</type>
   103     </dependency>
   104     <dependency>
   105       <groupId>org.glassfish.grizzly</groupId>
   106       <artifactId>grizzly-http-server-core</artifactId>
   107       <version>2.3.3</version>
   108       <scope>test</scope>
   109       <type>jar</type>
   110     </dependency>
   111     <dependency>
   112       <groupId>org.glassfish.grizzly</groupId>
   113       <artifactId>grizzly-websockets-server</artifactId>
   114       <version>2.3.3</version>
   115       <scope>test</scope>
   116       <type>jar</type>
   117     </dependency>
   118     <dependency>
   119         <groupId>${project.groupId}</groupId>
   120         <artifactId>boot-fx</artifactId>
   121         <version>${project.version}</version>
   122         <scope>test</scope>
   123     </dependency>
   124     <dependency>
   125       <groupId>org.glassfish.grizzly</groupId>
   126       <artifactId>grizzly-http-server</artifactId>
   127       <version>2.3.3</version>
   128       <scope>test</scope>
   129     </dependency>
   130     <dependency>
   131         <groupId>org.glassfish.grizzly</groupId>
   132         <artifactId>grizzly-http-servlet</artifactId>
   133         <version>2.3.3</version>
   134         <scope>test</scope>
   135     </dependency>    
   136     <dependency>
   137         <groupId>javax.servlet</groupId>
   138         <artifactId>javax.servlet-api</artifactId>
   139         <scope>test</scope>
   140         <version>3.1.0</version>
   141     </dependency>
   142   </dependencies>
   143 </project>