ko-ws-tyrus/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 04 Nov 2013 13:03:58 +0100
changeset 314 3461e5ec9059
parent 306 10bae0c421ef
child 325 3dc22f6fa03f
permissions -rw-r--r--
Converted my JARs into OSGi bundles
     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.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.html</groupId>
    10   <artifactId>ko-ws-tyrus</artifactId>
    11   <version>0.7-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   </properties>
    42   <dependencies>
    43     <!-- compile only deps -->
    44     <dependency>
    45       <groupId>org.netbeans.api</groupId>
    46       <artifactId>org-openide-util-lookup</artifactId>
    47       <type>jar</type>
    48       <scope>provided</scope>
    49     </dependency>
    50 
    51     <!-- compile + runtime -->      
    52     <dependency>
    53       <groupId>${project.groupId}</groupId>
    54       <artifactId>net.java.html</artifactId>
    55       <version>${project.version}</version>
    56       <type>jar</type>
    57     </dependency>
    58     <dependency>
    59       <groupId>${project.groupId}</groupId>
    60       <artifactId>net.java.html.json</artifactId>
    61       <version>${project.version}</version>
    62       <type>jar</type>
    63     </dependency>
    64     <dependency>
    65       <groupId>org.json</groupId>
    66       <artifactId>json</artifactId>
    67       <version>20090211</version>
    68       <type>jar</type>
    69     </dependency>
    70     <dependency>
    71       <artifactId>javax.websocket-api</artifactId>
    72       <groupId>javax.websocket</groupId>
    73       <type>jar</type>
    74       <version>1.0</version>
    75     </dependency>
    76 
    77     <!-- tyrus runtime -->    
    78     <dependency>
    79         <groupId>org.glassfish.tyrus</groupId>
    80         <artifactId>tyrus-client</artifactId>
    81         <version>1.2.1</version>
    82         <scope>runtime</scope>
    83     </dependency>
    84     <dependency>
    85         <groupId>org.glassfish.tyrus</groupId>
    86         <artifactId>tyrus-container-grizzly</artifactId>
    87         <version>1.2.1</version>
    88         <scope>runtime</scope>
    89     </dependency>
    90     
    91     
    92     
    93     <!-- test only deps -->
    94     <dependency>
    95       <groupId>${project.groupId}</groupId>
    96       <artifactId>net.java.html.boot</artifactId>
    97       <version>${project.version}</version>
    98       <scope>test</scope>
    99       <type>jar</type>
   100     </dependency>
   101     <dependency>
   102       <groupId>${project.groupId}</groupId>
   103       <artifactId>net.java.html.json.tck</artifactId>
   104       <version>${project.version}</version>
   105       <scope>test</scope>
   106       <type>jar</type>
   107     </dependency>
   108     <dependency>
   109       <groupId>${project.groupId}</groupId>
   110       <artifactId>ko-fx</artifactId>
   111       <version>${project.version}</version>
   112       <scope>test</scope>
   113       <type>jar</type>
   114     </dependency>
   115     <dependency>
   116       <groupId>org.glassfish.grizzly</groupId>
   117       <artifactId>grizzly-http-server-core</artifactId>
   118       <version>2.3.3</version>
   119       <scope>test</scope>
   120       <type>jar</type>
   121     </dependency>
   122     <dependency>
   123       <groupId>org.glassfish.grizzly</groupId>
   124       <artifactId>grizzly-websockets-server</artifactId>
   125       <version>2.3.3</version>
   126       <scope>test</scope>
   127       <type>jar</type>
   128     </dependency>
   129     <dependency>
   130         <groupId>${project.groupId}</groupId>
   131         <artifactId>boot-fx</artifactId>
   132         <version>${project.version}</version>
   133         <scope>test</scope>
   134     </dependency>
   135     <dependency>
   136       <groupId>org.glassfish.grizzly</groupId>
   137       <artifactId>grizzly-http-server</artifactId>
   138       <version>2.3.3</version>
   139       <scope>test</scope>
   140     </dependency>
   141     <dependency>
   142         <groupId>org.glassfish.grizzly</groupId>
   143         <artifactId>grizzly-http-servlet</artifactId>
   144         <version>2.3.3</version>
   145         <scope>test</scope>
   146     </dependency>    
   147     <dependency>
   148         <groupId>javax.servlet</groupId>
   149         <artifactId>javax.servlet-api</artifactId>
   150         <scope>test</scope>
   151         <version>3.1.0</version>
   152     </dependency>
   153   </dependencies>
   154     <description>An implementation module that provides support for WebSocket protocol on JDK7. 
   155 No need to use it when running on JDK8 with FX WebView supporting WebSocket directly.</description>
   156 </project>