ko-osgi-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Sun, 22 Dec 2013 07:14:05 +0100
branchosgi
changeset 371 87bbddaa2db1
parent 369 303fdcce760b
child 390 186c98dc8550
permissions -rw-r--r--
More infrastructure for OSGi test. Now fails on TCK importing impl package - as generated by annotation processor
     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     <build>
    13         <plugins>
    14             <plugin>
    15                 <groupId>org.apache.maven.plugins</groupId>
    16                 <artifactId>maven-compiler-plugin</artifactId>
    17                 <version>2.3.2</version>
    18                 <configuration>
    19                     <source>1.7</source>
    20                     <target>1.7</target>
    21                 </configuration>
    22             </plugin>
    23         </plugins>
    24     </build>
    25     <dependencies>
    26         <dependency>
    27             <groupId>com.oracle</groupId>
    28             <artifactId>javafx</artifactId>
    29             <version>2.2</version>
    30             <scope>system</scope>
    31             <systemPath>${jfxrt.jar}</systemPath>
    32         </dependency>
    33         <dependency>
    34             <groupId>de.twentyeleven.skysail</groupId>
    35             <artifactId>org.json-osgi</artifactId>
    36         </dependency>
    37         <dependency>
    38             <groupId>org.netbeans.html</groupId>
    39             <artifactId>net.java.html.json</artifactId>
    40             <version>${project.version}</version>
    41         </dependency>
    42         <dependency>
    43             <groupId>org.testng</groupId>
    44             <artifactId>testng</artifactId>
    45             <scope>test</scope>
    46         </dependency>
    47         <dependency>
    48             <groupId>${project.groupId}</groupId>
    49             <artifactId>net.java.html.json.tck</artifactId>
    50             <version>${project.version}</version>
    51             <scope>test</scope>
    52         </dependency>
    53         <dependency>
    54             <groupId>org.netbeans.api</groupId>
    55             <artifactId>org-openide-util-lookup</artifactId>
    56             <scope>provided</scope>
    57         </dependency>
    58         <dependency>
    59             <groupId>org.netbeans.html</groupId>
    60             <artifactId>net.java.html.boot</artifactId>
    61             <version>${project.version}</version>
    62             <type>jar</type>
    63         </dependency>
    64         <dependency>
    65             <groupId>${project.groupId}</groupId>
    66             <artifactId>net.java.html.boot.fx</artifactId>
    67             <version>${project.version}</version>
    68             <scope>test</scope>
    69         </dependency>
    70         <dependency>
    71             <groupId>org.glassfish.grizzly</groupId>
    72             <artifactId>grizzly-http-server</artifactId>
    73             <version>2.3.3</version>
    74             <scope>test</scope>
    75         </dependency>
    76         <dependency>
    77             <groupId>org.glassfish.grizzly</groupId>
    78             <artifactId>grizzly-websockets-server</artifactId>
    79             <version>2.3.3</version>
    80             <scope>test</scope>
    81             <type>jar</type>
    82         </dependency>
    83         <dependency>
    84             <groupId>org.glassfish.grizzly</groupId>
    85             <artifactId>grizzly-http-servlet</artifactId>
    86             <version>2.3.3</version>
    87             <scope>test</scope>
    88         </dependency>    
    89         <dependency>
    90             <groupId>javax.servlet</groupId>
    91             <artifactId>javax.servlet-api</artifactId>
    92             <scope>test</scope>
    93             <version>3.1.0</version>
    94         </dependency>
    95         <dependency>
    96             <groupId>org.eclipse</groupId>
    97             <artifactId>org.eclipse.osgi</artifactId>
    98             <version>3.8.0.v20120529-1548</version>
    99             <scope>test</scope>
   100         </dependency>
   101         <dependency>
   102             <groupId>${project.groupId}</groupId>
   103             <artifactId>ko-fx</artifactId>
   104             <version>${project.version}</version>
   105             <scope>test</scope>
   106         </dependency>
   107     </dependencies>
   108 </project>