ko-osgi-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Thu, 09 Jan 2014 15:43:04 +0100
branchUniversalKO
changeset 444 03eeeb863fa1
parent 393 8b025bcde7bb
child 463 b49216623729
permissions -rw-r--r--
Updating references to ko4j
     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     <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                 <groupId>org.apache.maven.plugins</groupId>
    24                 <artifactId>maven-compiler-plugin</artifactId>
    25                 <version>2.3.2</version>
    26                 <configuration>
    27                     <source>1.7</source>
    28                     <target>1.7</target>
    29                 </configuration>
    30             </plugin>
    31             <plugin>
    32                 <artifactId>maven-failsafe-plugin</artifactId>
    33                 <version>2.16</version>
    34                 <configuration>
    35                     <additionalClasspathElements>
    36                         <additionalClasspathElement>${project.build.directory}/${project.build.finalName}.jar</additionalClasspathElement>
    37                     </additionalClasspathElements>
    38                 </configuration>
    39                 <executions>
    40                     <execution>
    41                         <goals>
    42                             <goal>integration-test</goal>
    43                             <goal>verify</goal>
    44                         </goals>
    45                     </execution>
    46                 </executions>
    47             </plugin>
    48         </plugins>
    49     </build>
    50     <dependencies>
    51         <dependency>
    52             <groupId>com.oracle</groupId>
    53             <artifactId>javafx</artifactId>
    54             <version>2.2</version>
    55             <scope>system</scope>
    56             <systemPath>${jfxrt.jar}</systemPath>
    57         </dependency>
    58         <dependency>
    59             <groupId>de.twentyeleven.skysail</groupId>
    60             <artifactId>org.json-osgi</artifactId>
    61         </dependency>
    62         <dependency>
    63             <groupId>org.netbeans.html</groupId>
    64             <artifactId>net.java.html.json</artifactId>
    65             <version>${project.version}</version>
    66         </dependency>
    67         <dependency>
    68             <groupId>org.testng</groupId>
    69             <artifactId>testng</artifactId>
    70             <scope>test</scope>
    71         </dependency>
    72         <dependency>
    73             <groupId>${project.groupId}</groupId>
    74             <artifactId>net.java.html.json.tck</artifactId>
    75             <version>${project.version}</version>
    76         </dependency>
    77         <dependency>
    78             <groupId>org.netbeans.api</groupId>
    79             <artifactId>org-openide-util-lookup</artifactId>
    80             <scope>provided</scope>
    81         </dependency>
    82         <dependency>
    83             <groupId>org.netbeans.html</groupId>
    84             <artifactId>net.java.html.boot</artifactId>
    85             <version>${project.version}</version>
    86             <type>jar</type>
    87         </dependency>
    88         <dependency>
    89             <groupId>${project.groupId}</groupId>
    90             <artifactId>ko4j</artifactId>
    91             <version>${project.version}</version>
    92         </dependency>
    93         <dependency>
    94             <groupId>${project.groupId}</groupId>
    95             <artifactId>net.java.html.boot.fx</artifactId>
    96             <version>${project.version}</version>
    97             <scope>test</scope>
    98         </dependency>
    99         <dependency>
   100             <groupId>org.glassfish.grizzly</groupId>
   101             <artifactId>grizzly-http-server</artifactId>
   102             <version>2.3.3</version>
   103             <scope>test</scope>
   104         </dependency>
   105         <dependency>
   106             <groupId>org.glassfish.grizzly</groupId>
   107             <artifactId>grizzly-websockets-server</artifactId>
   108             <version>2.3.3</version>
   109             <scope>test</scope>
   110             <type>jar</type>
   111         </dependency>
   112         <dependency>
   113             <groupId>org.glassfish.grizzly</groupId>
   114             <artifactId>grizzly-http-servlet</artifactId>
   115             <version>2.3.3</version>
   116             <scope>test</scope>
   117         </dependency>    
   118         <dependency>
   119             <groupId>javax.servlet</groupId>
   120             <artifactId>javax.servlet-api</artifactId>
   121             <scope>test</scope>
   122             <version>3.1.0</version>
   123         </dependency>
   124         <dependency>
   125             <groupId>org.eclipse</groupId>
   126             <artifactId>org.eclipse.osgi</artifactId>
   127             <version>3.8.0.v20120529-1548</version>
   128         </dependency>
   129         <dependency>
   130             <groupId>${project.groupId}</groupId>
   131             <artifactId>equinox-agentclass-hook</artifactId>
   132             <version>${project.version}</version>
   133             <scope>test</scope>
   134         </dependency>
   135     </dependencies>
   136 </project>