ko-osgi-test/pom.xml
branchosgi
changeset 369 303fdcce760b
child 371 87bbddaa2db1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ko-osgi-test/pom.xml	Sun Dec 22 05:40:18 2013 +0100
     1.3 @@ -0,0 +1,95 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.netbeans.html</groupId>
     1.9 +        <artifactId>pom</artifactId>
    1.10 +        <version>0.7-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>ko-osgi-test</artifactId>
    1.13 +    <packaging>jar</packaging>
    1.14 +    <description>Runs the TCK for Knockout in an OSGi Container</description>
    1.15 +    <dependencies>
    1.16 +        <dependency>
    1.17 +            <groupId>com.oracle</groupId>
    1.18 +            <artifactId>javafx</artifactId>
    1.19 +            <version>2.2</version>
    1.20 +            <scope>system</scope>
    1.21 +            <systemPath>${jfxrt.jar}</systemPath>
    1.22 +        </dependency>
    1.23 +        <dependency>
    1.24 +            <groupId>de.twentyeleven.skysail</groupId>
    1.25 +            <artifactId>org.json-osgi</artifactId>
    1.26 +        </dependency>
    1.27 +        <dependency>
    1.28 +            <groupId>org.netbeans.html</groupId>
    1.29 +            <artifactId>net.java.html.json</artifactId>
    1.30 +            <version>${project.version}</version>
    1.31 +        </dependency>
    1.32 +        <dependency>
    1.33 +            <groupId>org.testng</groupId>
    1.34 +            <artifactId>testng</artifactId>
    1.35 +            <scope>test</scope>
    1.36 +        </dependency>
    1.37 +        <dependency>
    1.38 +            <groupId>${project.groupId}</groupId>
    1.39 +            <artifactId>net.java.html.json.tck</artifactId>
    1.40 +            <version>${project.version}</version>
    1.41 +            <scope>test</scope>
    1.42 +        </dependency>
    1.43 +        <dependency>
    1.44 +            <groupId>org.netbeans.api</groupId>
    1.45 +            <artifactId>org-openide-util-lookup</artifactId>
    1.46 +            <scope>provided</scope>
    1.47 +        </dependency>
    1.48 +        <dependency>
    1.49 +            <groupId>org.netbeans.html</groupId>
    1.50 +            <artifactId>net.java.html.boot</artifactId>
    1.51 +            <version>${project.version}</version>
    1.52 +            <type>jar</type>
    1.53 +        </dependency>
    1.54 +        <dependency>
    1.55 +            <groupId>${project.groupId}</groupId>
    1.56 +            <artifactId>net.java.html.boot.fx</artifactId>
    1.57 +            <version>${project.version}</version>
    1.58 +            <scope>test</scope>
    1.59 +        </dependency>
    1.60 +        <dependency>
    1.61 +            <groupId>org.glassfish.grizzly</groupId>
    1.62 +            <artifactId>grizzly-http-server</artifactId>
    1.63 +            <version>2.3.3</version>
    1.64 +            <scope>test</scope>
    1.65 +        </dependency>
    1.66 +        <dependency>
    1.67 +            <groupId>org.glassfish.grizzly</groupId>
    1.68 +            <artifactId>grizzly-websockets-server</artifactId>
    1.69 +            <version>2.3.3</version>
    1.70 +            <scope>test</scope>
    1.71 +            <type>jar</type>
    1.72 +        </dependency>
    1.73 +        <dependency>
    1.74 +            <groupId>org.glassfish.grizzly</groupId>
    1.75 +            <artifactId>grizzly-http-servlet</artifactId>
    1.76 +            <version>2.3.3</version>
    1.77 +            <scope>test</scope>
    1.78 +        </dependency>    
    1.79 +        <dependency>
    1.80 +            <groupId>javax.servlet</groupId>
    1.81 +            <artifactId>javax.servlet-api</artifactId>
    1.82 +            <scope>test</scope>
    1.83 +            <version>3.1.0</version>
    1.84 +        </dependency>
    1.85 +        <dependency>
    1.86 +            <groupId>org.eclipse</groupId>
    1.87 +            <artifactId>org.eclipse.osgi</artifactId>
    1.88 +            <version>3.8.0.v20120529-1548</version>
    1.89 +            <scope>test</scope>
    1.90 +        </dependency>
    1.91 +        <dependency>
    1.92 +            <groupId>${project.groupId}</groupId>
    1.93 +            <artifactId>ko-fx</artifactId>
    1.94 +            <version>${project.version}</version>
    1.95 +            <scope>test</scope>
    1.96 +        </dependency>
    1.97 +    </dependencies>
    1.98 +</project>
    1.99 \ No newline at end of file