ko-osgi-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Sat, 04 Jan 2014 08:11:47 +0100
branchosgi
changeset 390 186c98dc8550
parent 371 87bbddaa2db1
child 391 ab693b8dc2e0
permissions -rw-r--r--
Resolves dependencies of json-tck
     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     <properties>
    13         <netbeans.compile.on.save>none</netbeans.compile.on.save>
    14     </properties>
    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         </plugins>
    27     </build>
    28     <dependencies>
    29         <dependency>
    30             <groupId>com.oracle</groupId>
    31             <artifactId>javafx</artifactId>
    32             <version>2.2</version>
    33             <scope>system</scope>
    34             <systemPath>${jfxrt.jar}</systemPath>
    35         </dependency>
    36         <dependency>
    37             <groupId>de.twentyeleven.skysail</groupId>
    38             <artifactId>org.json-osgi</artifactId>
    39         </dependency>
    40         <dependency>
    41             <groupId>org.netbeans.html</groupId>
    42             <artifactId>net.java.html.json</artifactId>
    43             <version>${project.version}</version>
    44         </dependency>
    45         <dependency>
    46             <groupId>org.testng</groupId>
    47             <artifactId>testng</artifactId>
    48             <scope>test</scope>
    49         </dependency>
    50         <dependency>
    51             <groupId>${project.groupId}</groupId>
    52             <artifactId>net.java.html.json.tck</artifactId>
    53             <version>${project.version}</version>
    54             <scope>test</scope>
    55         </dependency>
    56         <dependency>
    57             <groupId>org.netbeans.api</groupId>
    58             <artifactId>org-openide-util-lookup</artifactId>
    59             <scope>provided</scope>
    60         </dependency>
    61         <dependency>
    62             <groupId>org.netbeans.html</groupId>
    63             <artifactId>net.java.html.boot</artifactId>
    64             <version>${project.version}</version>
    65             <type>jar</type>
    66         </dependency>
    67         <dependency>
    68             <groupId>${project.groupId}</groupId>
    69             <artifactId>net.java.html.boot.fx</artifactId>
    70             <version>${project.version}</version>
    71             <scope>test</scope>
    72         </dependency>
    73         <dependency>
    74             <groupId>org.glassfish.grizzly</groupId>
    75             <artifactId>grizzly-http-server</artifactId>
    76             <version>2.3.3</version>
    77             <scope>test</scope>
    78         </dependency>
    79         <dependency>
    80             <groupId>org.glassfish.grizzly</groupId>
    81             <artifactId>grizzly-websockets-server</artifactId>
    82             <version>2.3.3</version>
    83             <scope>test</scope>
    84             <type>jar</type>
    85         </dependency>
    86         <dependency>
    87             <groupId>org.glassfish.grizzly</groupId>
    88             <artifactId>grizzly-http-servlet</artifactId>
    89             <version>2.3.3</version>
    90             <scope>test</scope>
    91         </dependency>    
    92         <dependency>
    93             <groupId>javax.servlet</groupId>
    94             <artifactId>javax.servlet-api</artifactId>
    95             <scope>test</scope>
    96             <version>3.1.0</version>
    97         </dependency>
    98         <dependency>
    99             <groupId>org.eclipse</groupId>
   100             <artifactId>org.eclipse.osgi</artifactId>
   101             <version>3.8.0.v20120529-1548</version>
   102             <scope>test</scope>
   103         </dependency>
   104         <dependency>
   105             <groupId>${project.groupId}</groupId>
   106             <artifactId>ko-fx</artifactId>
   107             <version>${project.version}</version>
   108             <scope>test</scope>
   109         </dependency>
   110     </dependencies>
   111 </project>