ko-felix-test/pom.xml
changeset 771 ee3614350fc8
parent 767 561536cc73fd
child 772 3285b4511afc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ko-felix-test/pom.xml	Thu Jul 31 14:36:00 2014 +0200
     1.3 @@ -0,0 +1,123 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.netbeans.html</groupId>
     1.9 +        <artifactId>pom</artifactId>
    1.10 +        <version>0.8.3</version>
    1.11 +    </parent>
    1.12 +    <name>KO Tests in Felix OSGi Container</name>
    1.13 +    <artifactId>ko-felix-test</artifactId>
    1.14 +    <packaging>bundle</packaging>
    1.15 +    <description>Runs the TCK for Knockout in Felix OSGi Container</description>
    1.16 +    <properties>
    1.17 +        <netbeans.compile.on.save>none</netbeans.compile.on.save>
    1.18 +    </properties>
    1.19 +    <build>
    1.20 +        <plugins>
    1.21 +            <plugin>
    1.22 +                <groupId>org.apache.felix</groupId>
    1.23 +                <artifactId>maven-bundle-plugin</artifactId>
    1.24 +            </plugin>
    1.25 +            <plugin>
    1.26 +                <groupId>org.netbeans.html</groupId>
    1.27 +                <artifactId>html4j-maven-plugin</artifactId>
    1.28 +            </plugin>
    1.29 +            <plugin>
    1.30 +                <artifactId>maven-failsafe-plugin</artifactId>
    1.31 +                <version>2.16</version>
    1.32 +                <configuration>
    1.33 +                    <additionalClasspathElements>
    1.34 +                        <additionalClasspathElement>${project.build.directory}/${project.build.finalName}.jar</additionalClasspathElement>
    1.35 +                    </additionalClasspathElements>
    1.36 +                </configuration>
    1.37 +                <executions>
    1.38 +                    <execution>
    1.39 +                        <goals>
    1.40 +                            <goal>integration-test</goal>
    1.41 +                            <goal>verify</goal>
    1.42 +                        </goals>
    1.43 +                    </execution>
    1.44 +                </executions>
    1.45 +            </plugin>
    1.46 +        </plugins>
    1.47 +    </build>
    1.48 +    <dependencies>
    1.49 +        <dependency>
    1.50 +            <groupId>com.oracle</groupId>
    1.51 +            <artifactId>javafx</artifactId>
    1.52 +            <version>2.2</version>
    1.53 +            <scope>system</scope>
    1.54 +            <systemPath>${jfxrt.jar}</systemPath>
    1.55 +        </dependency>
    1.56 +        <dependency>
    1.57 +            <groupId>de.twentyeleven.skysail</groupId>
    1.58 +            <artifactId>org.json-osgi</artifactId>
    1.59 +        </dependency>
    1.60 +        <dependency>
    1.61 +            <groupId>org.netbeans.html</groupId>
    1.62 +            <artifactId>net.java.html.json</artifactId>
    1.63 +            <version>${project.version}</version>
    1.64 +        </dependency>
    1.65 +        <dependency>
    1.66 +            <groupId>org.testng</groupId>
    1.67 +            <artifactId>testng</artifactId>
    1.68 +            <scope>test</scope>
    1.69 +        </dependency>
    1.70 +        <dependency>
    1.71 +            <groupId>${project.groupId}</groupId>
    1.72 +            <artifactId>net.java.html.json.tck</artifactId>
    1.73 +            <version>${project.version}</version>
    1.74 +        </dependency>
    1.75 +        <dependency>
    1.76 +            <groupId>org.netbeans.api</groupId>
    1.77 +            <artifactId>org-openide-util-lookup</artifactId>
    1.78 +            <scope>provided</scope>
    1.79 +        </dependency>
    1.80 +        <dependency>
    1.81 +            <groupId>org.netbeans.html</groupId>
    1.82 +            <artifactId>net.java.html.boot</artifactId>
    1.83 +            <version>${project.version}</version>
    1.84 +            <type>jar</type>
    1.85 +        </dependency>
    1.86 +        <dependency>
    1.87 +            <groupId>${project.groupId}</groupId>
    1.88 +            <artifactId>ko4j</artifactId>
    1.89 +            <version>${project.version}</version>
    1.90 +        </dependency>
    1.91 +        <dependency>
    1.92 +            <groupId>${project.groupId}</groupId>
    1.93 +            <artifactId>net.java.html.boot.fx</artifactId>
    1.94 +            <version>${project.version}</version>
    1.95 +            <scope>test</scope>
    1.96 +        </dependency>
    1.97 +        <dependency>
    1.98 +            <groupId>org.glassfish.grizzly</groupId>
    1.99 +            <artifactId>grizzly-http-server</artifactId>
   1.100 +            <version>${grizzly.version}</version>
   1.101 +            <scope>test</scope>
   1.102 +        </dependency>
   1.103 +        <dependency>
   1.104 +            <groupId>org.glassfish.grizzly</groupId>
   1.105 +            <artifactId>grizzly-websockets-server</artifactId>
   1.106 +            <version>${grizzly.version}</version>
   1.107 +            <scope>test</scope>
   1.108 +            <type>jar</type>
   1.109 +        </dependency>
   1.110 +        <dependency>
   1.111 +            <groupId>org.glassfish.grizzly</groupId>
   1.112 +            <artifactId>grizzly-http-servlet</artifactId>
   1.113 +            <version>${grizzly.version}</version>
   1.114 +            <scope>test</scope>
   1.115 +        </dependency>    
   1.116 +        <dependency>
   1.117 +            <groupId>javax.servlet</groupId>
   1.118 +            <artifactId>javax.servlet-api</artifactId>
   1.119 +            <scope>test</scope>
   1.120 +        </dependency>
   1.121 +        <dependency>
   1.122 +            <groupId>org.apache.felix</groupId>
   1.123 +            <artifactId>org.apache.felix.framework</artifactId>
   1.124 +        </dependency>
   1.125 +    </dependencies>
   1.126 +</project>
   1.127 \ No newline at end of file