ko-osgi-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Sun, 22 Dec 2013 05:40:18 +0100
branchosgi
changeset 369 303fdcce760b
child 371 87bbddaa2db1
permissions -rw-r--r--
Infrastructure for testing in an OSGi container
     1 <?xml version="1.0" encoding="UTF-8"?>
     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.7-SNAPSHOT</version>
     8     </parent>
     9     <artifactId>ko-osgi-test</artifactId>
    10     <packaging>jar</packaging>
    11     <description>Runs the TCK for Knockout in an OSGi Container</description>
    12     <dependencies>
    13         <dependency>
    14             <groupId>com.oracle</groupId>
    15             <artifactId>javafx</artifactId>
    16             <version>2.2</version>
    17             <scope>system</scope>
    18             <systemPath>${jfxrt.jar}</systemPath>
    19         </dependency>
    20         <dependency>
    21             <groupId>de.twentyeleven.skysail</groupId>
    22             <artifactId>org.json-osgi</artifactId>
    23         </dependency>
    24         <dependency>
    25             <groupId>org.netbeans.html</groupId>
    26             <artifactId>net.java.html.json</artifactId>
    27             <version>${project.version}</version>
    28         </dependency>
    29         <dependency>
    30             <groupId>org.testng</groupId>
    31             <artifactId>testng</artifactId>
    32             <scope>test</scope>
    33         </dependency>
    34         <dependency>
    35             <groupId>${project.groupId}</groupId>
    36             <artifactId>net.java.html.json.tck</artifactId>
    37             <version>${project.version}</version>
    38             <scope>test</scope>
    39         </dependency>
    40         <dependency>
    41             <groupId>org.netbeans.api</groupId>
    42             <artifactId>org-openide-util-lookup</artifactId>
    43             <scope>provided</scope>
    44         </dependency>
    45         <dependency>
    46             <groupId>org.netbeans.html</groupId>
    47             <artifactId>net.java.html.boot</artifactId>
    48             <version>${project.version}</version>
    49             <type>jar</type>
    50         </dependency>
    51         <dependency>
    52             <groupId>${project.groupId}</groupId>
    53             <artifactId>net.java.html.boot.fx</artifactId>
    54             <version>${project.version}</version>
    55             <scope>test</scope>
    56         </dependency>
    57         <dependency>
    58             <groupId>org.glassfish.grizzly</groupId>
    59             <artifactId>grizzly-http-server</artifactId>
    60             <version>2.3.3</version>
    61             <scope>test</scope>
    62         </dependency>
    63         <dependency>
    64             <groupId>org.glassfish.grizzly</groupId>
    65             <artifactId>grizzly-websockets-server</artifactId>
    66             <version>2.3.3</version>
    67             <scope>test</scope>
    68             <type>jar</type>
    69         </dependency>
    70         <dependency>
    71             <groupId>org.glassfish.grizzly</groupId>
    72             <artifactId>grizzly-http-servlet</artifactId>
    73             <version>2.3.3</version>
    74             <scope>test</scope>
    75         </dependency>    
    76         <dependency>
    77             <groupId>javax.servlet</groupId>
    78             <artifactId>javax.servlet-api</artifactId>
    79             <scope>test</scope>
    80             <version>3.1.0</version>
    81         </dependency>
    82         <dependency>
    83             <groupId>org.eclipse</groupId>
    84             <artifactId>org.eclipse.osgi</artifactId>
    85             <version>3.8.0.v20120529-1548</version>
    86             <scope>test</scope>
    87         </dependency>
    88         <dependency>
    89             <groupId>${project.groupId}</groupId>
    90             <artifactId>ko-fx</artifactId>
    91             <version>${project.version}</version>
    92             <scope>test</scope>
    93         </dependency>
    94     </dependencies>
    95 </project>