ko-archetype-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 16 May 2013 14:00:49 +0200
changeset 1217 9c5b5d8ee4bb
parent 1202 5f04bdbc6ee1
child 1218 d0d22163568a
permissions -rw-r--r--
Knockout bindings need to be built first
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4     <modelVersion>4.0.0</modelVersion>
     5     <parent>
     6         <groupId>org.apidesign</groupId>
     7         <artifactId>html</artifactId>
     8         <version>0.3-SNAPSHOT</version>
     9     </parent>
    10     <groupId>org.apidesign.html</groupId>
    11     <artifactId>ko-archetype-test</artifactId>
    12     <version>0.3-SNAPSHOT</version>
    13     <name>Knockout 4 Java Archetype Test</name>
    14     <url>http://maven.apache.org</url>
    15     <description>Verifies the Knockout &amp; net.java.html.json archetype behaves properly.</description>
    16     <properties>
    17         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    18     </properties>
    19     <dependencies>
    20         <dependency>
    21             <groupId>${project.groupId}</groupId>
    22             <artifactId>knockout4j-archetype</artifactId>
    23             <version>0.3-SNAPSHOT</version>
    24         </dependency>
    25         <dependency>
    26             <groupId>org.testng</groupId>
    27             <artifactId>testng</artifactId>
    28             <scope>test</scope>
    29         </dependency>
    30         <dependency>                                
    31             <groupId>org.apache.maven.shared</groupId>
    32             <artifactId>maven-verifier</artifactId>
    33             <version>1.4</version>
    34             <scope>test</scope>
    35         </dependency>
    36         <dependency>
    37             <groupId>${project.groupId}</groupId>
    38             <artifactId>ko-fx</artifactId>
    39             <version>${project.version}</version>
    40             <scope>provided</scope>
    41         </dependency>
    42         <dependency>
    43             <groupId>${project.groupId}</groupId>
    44             <artifactId>ko-bck2brwsr</artifactId>
    45             <version>${project.version}</version>
    46             <scope>provided</scope>
    47         </dependency>
    48     </dependencies>
    49 </project>