ko-osgi-test/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 21 Sep 2015 21:19:13 +0200
changeset 992 6f1a8b251b7d
parent 989 af449e1eaedc
child 1005 c7f11fbd5475
permissions -rw-r--r--
[maven-release-plugin] prepare release release-1.2.3
     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>1.2.3</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                 <groupId>org.apache.maven.plugins</groupId>
    28                 <artifactId>maven-deploy-plugin</artifactId>
    29                 <configuration>
    30                     <skip>true</skip>
    31                 </configuration>
    32             </plugin>
    33             <plugin>
    34                 <artifactId>maven-failsafe-plugin</artifactId>
    35                 <version>2.16</version>
    36                 <configuration>
    37                     <additionalClasspathElements>
    38                         <additionalClasspathElement>${project.build.directory}/${project.build.finalName}.jar</additionalClasspathElement>
    39                     </additionalClasspathElements>
    40                 </configuration>
    41                 <executions>
    42                     <execution>
    43                         <goals>
    44                             <goal>integration-test</goal>
    45                             <goal>verify</goal>
    46                         </goals>
    47                     </execution>
    48                 </executions>
    49             </plugin>
    50         </plugins>
    51     </build>
    52     <dependencies>
    53         <dependency>
    54             <groupId>com.oracle</groupId>
    55             <artifactId>javafx</artifactId>
    56             <version>2.2</version>
    57             <scope>system</scope>
    58             <systemPath>${jfxrt.jar}</systemPath>
    59         </dependency>
    60         <dependency>
    61             <groupId>de.twentyeleven.skysail</groupId>
    62             <artifactId>org.json-osgi</artifactId>
    63         </dependency>
    64         <dependency>
    65             <groupId>org.netbeans.html</groupId>
    66             <artifactId>net.java.html.json</artifactId>
    67             <version>${project.version}</version>
    68         </dependency>
    69         <dependency>
    70             <groupId>org.testng</groupId>
    71             <artifactId>testng</artifactId>
    72             <scope>test</scope>
    73         </dependency>
    74         <dependency>
    75             <groupId>${project.groupId}</groupId>
    76             <artifactId>net.java.html.json.tck</artifactId>
    77             <version>${project.version}</version>
    78         </dependency>
    79         <dependency>
    80             <groupId>org.netbeans.api</groupId>
    81             <artifactId>org-openide-util-lookup</artifactId>
    82             <scope>provided</scope>
    83         </dependency>
    84         <dependency>
    85             <groupId>org.netbeans.html</groupId>
    86             <artifactId>net.java.html.boot</artifactId>
    87             <version>${project.version}</version>
    88             <type>jar</type>
    89         </dependency>
    90         <dependency>
    91             <groupId>${project.groupId}</groupId>
    92             <artifactId>ko4j</artifactId>
    93             <version>${project.version}</version>
    94         </dependency>
    95         <dependency>
    96             <groupId>${project.groupId}</groupId>
    97             <artifactId>net.java.html.boot.fx</artifactId>
    98             <version>${project.version}</version>
    99             <scope>test</scope>
   100         </dependency>
   101         <dependency>
   102             <groupId>org.glassfish.grizzly</groupId>
   103             <artifactId>grizzly-http-server</artifactId>
   104             <version>${grizzly.version}</version>
   105             <scope>test</scope>
   106         </dependency>
   107         <dependency>
   108             <groupId>org.glassfish.grizzly</groupId>
   109             <artifactId>grizzly-websockets-server</artifactId>
   110             <version>${grizzly.version}</version>
   111             <scope>test</scope>
   112             <type>jar</type>
   113         </dependency>
   114         <dependency>
   115             <groupId>org.glassfish.grizzly</groupId>
   116             <artifactId>grizzly-http-servlet</artifactId>
   117             <version>${grizzly.version}</version>
   118             <scope>test</scope>
   119         </dependency>    
   120         <dependency>
   121             <groupId>javax.servlet</groupId>
   122             <artifactId>javax.servlet-api</artifactId>
   123             <scope>test</scope>
   124             <version>3.1.0</version>
   125         </dependency>
   126         <dependency>
   127             <groupId>org.eclipse</groupId>
   128             <artifactId>org.eclipse.osgi</artifactId>
   129             <version>3.8.0.v20120529-1548</version>
   130         </dependency>
   131         <dependency>
   132             <groupId>${project.groupId}</groupId>
   133             <artifactId>equinox-agentclass-hook</artifactId>
   134             <version>${project.version}</version>
   135             <scope>test</scope>
   136         </dependency>
   137     </dependencies>
   138 </project>