ko-osgi-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Tue, 21 Jan 2014 09:00:01 +0100
changeset 472 c6f161bedc70
parent 466 973fc25eb5f8
parent 471 14e1ef348d1a
child 473 4f02ac8ef70a
permissions -rw-r--r--
Merging in jdk6 changes in preparation of 0.7.1 release
     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.8-SNAPSHOT</version>
     8     </parent>
     9     <name>KO Tests in an OSGi Container</name>
    10     <artifactId>ko-osgi-test</artifactId>
    11     <packaging>bundle</packaging>
    12     <description>Runs the TCK for Knockout in an OSGi Container</description>
    13     <properties>
    14         <netbeans.compile.on.save>none</netbeans.compile.on.save>
    15     </properties>
    16     <build>
    17         <plugins>
    18             <plugin>
    19                 <groupId>org.apache.felix</groupId>
    20                 <artifactId>maven-bundle-plugin</artifactId>
    21             </plugin>
    22             <plugin>
    23                 <artifactId>maven-failsafe-plugin</artifactId>
    24                 <version>2.16</version>
    25                 <configuration>
    26                     <additionalClasspathElements>
    27                         <additionalClasspathElement>${project.build.directory}/${project.build.finalName}.jar</additionalClasspathElement>
    28                     </additionalClasspathElements>
    29                 </configuration>
    30                 <executions>
    31                     <execution>
    32                         <goals>
    33                             <goal>integration-test</goal>
    34                             <goal>verify</goal>
    35                         </goals>
    36                     </execution>
    37                 </executions>
    38             </plugin>
    39         </plugins>
    40     </build>
    41     <dependencies>
    42         <dependency>
    43             <groupId>com.oracle</groupId>
    44             <artifactId>javafx</artifactId>
    45             <version>2.2</version>
    46             <scope>system</scope>
    47             <systemPath>${jfxrt.jar}</systemPath>
    48         </dependency>
    49         <dependency>
    50             <groupId>de.twentyeleven.skysail</groupId>
    51             <artifactId>org.json-osgi</artifactId>
    52         </dependency>
    53         <dependency>
    54             <groupId>org.netbeans.html</groupId>
    55             <artifactId>net.java.html.json</artifactId>
    56             <version>${project.version}</version>
    57         </dependency>
    58         <dependency>
    59             <groupId>org.testng</groupId>
    60             <artifactId>testng</artifactId>
    61             <scope>test</scope>
    62         </dependency>
    63         <dependency>
    64             <groupId>${project.groupId}</groupId>
    65             <artifactId>net.java.html.json.tck</artifactId>
    66             <version>${project.version}</version>
    67         </dependency>
    68         <dependency>
    69             <groupId>org.netbeans.api</groupId>
    70             <artifactId>org-openide-util-lookup</artifactId>
    71             <scope>provided</scope>
    72         </dependency>
    73         <dependency>
    74             <groupId>org.netbeans.html</groupId>
    75             <artifactId>net.java.html.boot</artifactId>
    76             <version>${project.version}</version>
    77             <type>jar</type>
    78         </dependency>
    79         <dependency>
    80             <groupId>${project.groupId}</groupId>
    81             <artifactId>ko4j</artifactId>
    82             <version>${project.version}</version>
    83         </dependency>
    84         <dependency>
    85             <groupId>${project.groupId}</groupId>
    86             <artifactId>net.java.html.boot.fx</artifactId>
    87             <version>${project.version}</version>
    88             <scope>test</scope>
    89         </dependency>
    90         <dependency>
    91             <groupId>org.glassfish.grizzly</groupId>
    92             <artifactId>grizzly-http-server</artifactId>
    93             <version>${grizzly.version}</version>
    94             <scope>test</scope>
    95         </dependency>
    96         <dependency>
    97             <groupId>org.glassfish.grizzly</groupId>
    98             <artifactId>grizzly-websockets-server</artifactId>
    99             <version>${grizzly.version}</version>
   100             <scope>test</scope>
   101             <type>jar</type>
   102         </dependency>
   103         <dependency>
   104             <groupId>org.glassfish.grizzly</groupId>
   105             <artifactId>grizzly-http-servlet</artifactId>
   106             <version>${grizzly.version}</version>
   107             <scope>test</scope>
   108         </dependency>    
   109         <dependency>
   110             <groupId>javax.servlet</groupId>
   111             <artifactId>javax.servlet-api</artifactId>
   112             <scope>test</scope>
   113             <version>3.1.0</version>
   114         </dependency>
   115         <dependency>
   116             <groupId>org.eclipse</groupId>
   117             <artifactId>org.eclipse.osgi</artifactId>
   118             <version>3.8.0.v20120529-1548</version>
   119         </dependency>
   120         <dependency>
   121             <groupId>${project.groupId}</groupId>
   122             <artifactId>equinox-agentclass-hook</artifactId>
   123             <version>${project.version}</version>
   124             <scope>test</scope>
   125         </dependency>
   126     </dependencies>
   127 </project>