ko-osgi-test/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 19 Aug 2014 20:11:47 +0200
changeset 811 12ba7b79238a
parent 772 3285b4511afc
child 813 394568d7b13b
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.9
     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.9</version>
     8     </parent>
     9     <name>KO Tests in Equinox OSGi Container</name>
    10     <artifactId>ko-osgi-test</artifactId>
    11     <packaging>bundle</packaging>
    12     <description>Runs the TCK for Knockout in Equinox 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.netbeans.html</groupId>
    24                 <artifactId>html4j-maven-plugin</artifactId>
    25             </plugin>
    26             <plugin>
    27                 <artifactId>maven-failsafe-plugin</artifactId>
    28                 <version>2.16</version>
    29                 <configuration>
    30                     <additionalClasspathElements>
    31                         <additionalClasspathElement>${project.build.directory}/${project.build.finalName}.jar</additionalClasspathElement>
    32                     </additionalClasspathElements>
    33                 </configuration>
    34                 <executions>
    35                     <execution>
    36                         <goals>
    37                             <goal>integration-test</goal>
    38                             <goal>verify</goal>
    39                         </goals>
    40                     </execution>
    41                 </executions>
    42             </plugin>
    43         </plugins>
    44     </build>
    45     <dependencies>
    46         <dependency>
    47             <groupId>com.oracle</groupId>
    48             <artifactId>javafx</artifactId>
    49             <version>2.2</version>
    50             <scope>system</scope>
    51             <systemPath>${jfxrt.jar}</systemPath>
    52         </dependency>
    53         <dependency>
    54             <groupId>de.twentyeleven.skysail</groupId>
    55             <artifactId>org.json-osgi</artifactId>
    56         </dependency>
    57         <dependency>
    58             <groupId>org.netbeans.html</groupId>
    59             <artifactId>net.java.html.json</artifactId>
    60             <version>${project.version}</version>
    61         </dependency>
    62         <dependency>
    63             <groupId>org.testng</groupId>
    64             <artifactId>testng</artifactId>
    65             <scope>test</scope>
    66         </dependency>
    67         <dependency>
    68             <groupId>${project.groupId}</groupId>
    69             <artifactId>net.java.html.json.tck</artifactId>
    70             <version>${project.version}</version>
    71         </dependency>
    72         <dependency>
    73             <groupId>org.netbeans.api</groupId>
    74             <artifactId>org-openide-util-lookup</artifactId>
    75             <scope>provided</scope>
    76         </dependency>
    77         <dependency>
    78             <groupId>org.netbeans.html</groupId>
    79             <artifactId>net.java.html.boot</artifactId>
    80             <version>${project.version}</version>
    81             <type>jar</type>
    82         </dependency>
    83         <dependency>
    84             <groupId>${project.groupId}</groupId>
    85             <artifactId>ko4j</artifactId>
    86             <version>${project.version}</version>
    87         </dependency>
    88         <dependency>
    89             <groupId>${project.groupId}</groupId>
    90             <artifactId>net.java.html.boot.fx</artifactId>
    91             <version>${project.version}</version>
    92             <scope>test</scope>
    93         </dependency>
    94         <dependency>
    95             <groupId>org.glassfish.grizzly</groupId>
    96             <artifactId>grizzly-http-server</artifactId>
    97             <version>${grizzly.version}</version>
    98             <scope>test</scope>
    99         </dependency>
   100         <dependency>
   101             <groupId>org.glassfish.grizzly</groupId>
   102             <artifactId>grizzly-websockets-server</artifactId>
   103             <version>${grizzly.version}</version>
   104             <scope>test</scope>
   105             <type>jar</type>
   106         </dependency>
   107         <dependency>
   108             <groupId>org.glassfish.grizzly</groupId>
   109             <artifactId>grizzly-http-servlet</artifactId>
   110             <version>${grizzly.version}</version>
   111             <scope>test</scope>
   112         </dependency>    
   113         <dependency>
   114             <groupId>javax.servlet</groupId>
   115             <artifactId>javax.servlet-api</artifactId>
   116             <scope>test</scope>
   117             <version>3.1.0</version>
   118         </dependency>
   119         <dependency>
   120             <groupId>org.eclipse</groupId>
   121             <artifactId>org.eclipse.osgi</artifactId>
   122             <version>3.8.0.v20120529-1548</version>
   123         </dependency>
   124         <dependency>
   125             <groupId>${project.groupId}</groupId>
   126             <artifactId>equinox-agentclass-hook</artifactId>
   127             <version>${project.version}</version>
   128             <scope>test</scope>
   129         </dependency>
   130     </dependencies>
   131 </project>