ko-ws-tyrus/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 27 Aug 2013 07:27:51 +0000
changeset 263 e52df26d579b
parent 260 23e2ad7e6d23
child 264 6656cca0a73a
permissions -rw-r--r--
Javadoc and descriptions for individual modules
     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             <plugin>
    27                 <groupId>org.apache.maven.plugins</groupId>
    28                 <artifactId>maven-javadoc-plugin</artifactId>
    29                 <configuration>
    30                     <skip>false</skip>
    31                 </configuration>
    32             </plugin>
    33         </plugins>
    34     </build>
    35     <properties>
    36     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    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>org.json</groupId>
    62       <artifactId>json</artifactId>
    63       <version>20090211</version>
    64       <type>jar</type>
    65     </dependency>
    66     <dependency>
    67       <artifactId>javax.websocket-api</artifactId>
    68       <groupId>javax.websocket</groupId>
    69       <type>jar</type>
    70       <version>1.0</version>
    71     </dependency>
    72 
    73     <!-- tyrus runtime -->    
    74     <dependency>
    75         <groupId>org.glassfish.tyrus</groupId>
    76         <artifactId>tyrus-client</artifactId>
    77         <version>1.2.1</version>
    78         <scope>runtime</scope>
    79     </dependency>
    80     <dependency>
    81         <groupId>org.glassfish.tyrus</groupId>
    82         <artifactId>tyrus-container-grizzly</artifactId>
    83         <version>1.2.1</version>
    84         <scope>runtime</scope>
    85     </dependency>
    86     
    87     
    88     
    89     <!-- test only deps -->
    90     <dependency>
    91       <groupId>${project.groupId}</groupId>
    92       <artifactId>net.java.html.boot</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>net.java.html.json.tck</artifactId>
   100       <version>${project.version}</version>
   101       <scope>test</scope>
   102       <type>jar</type>
   103     </dependency>
   104     <dependency>
   105       <groupId>${project.groupId}</groupId>
   106       <artifactId>ko-fx</artifactId>
   107       <version>${project.version}</version>
   108       <scope>test</scope>
   109       <type>jar</type>
   110     </dependency>
   111     <dependency>
   112       <groupId>org.glassfish.grizzly</groupId>
   113       <artifactId>grizzly-http-server-core</artifactId>
   114       <version>2.3.3</version>
   115       <scope>test</scope>
   116       <type>jar</type>
   117     </dependency>
   118     <dependency>
   119       <groupId>org.glassfish.grizzly</groupId>
   120       <artifactId>grizzly-websockets-server</artifactId>
   121       <version>2.3.3</version>
   122       <scope>test</scope>
   123       <type>jar</type>
   124     </dependency>
   125     <dependency>
   126         <groupId>${project.groupId}</groupId>
   127         <artifactId>boot-fx</artifactId>
   128         <version>${project.version}</version>
   129         <scope>test</scope>
   130     </dependency>
   131     <dependency>
   132       <groupId>org.glassfish.grizzly</groupId>
   133       <artifactId>grizzly-http-server</artifactId>
   134       <version>2.3.3</version>
   135       <scope>test</scope>
   136     </dependency>
   137     <dependency>
   138         <groupId>org.glassfish.grizzly</groupId>
   139         <artifactId>grizzly-http-servlet</artifactId>
   140         <version>2.3.3</version>
   141         <scope>test</scope>
   142     </dependency>    
   143     <dependency>
   144         <groupId>javax.servlet</groupId>
   145         <artifactId>javax.servlet-api</artifactId>
   146         <scope>test</scope>
   147         <version>3.1.0</version>
   148     </dependency>
   149   </dependencies>
   150     <description>An implementation module that provides support for WebSocket protocol on JDK7. 
   151 No need to use it when running on JDK8 with FX WebView supporting WebSocket directly.</description>
   152 </project>