ko-archetype-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Sat, 15 Mar 2014 17:28:16 +0100
changeset 619 ae10a70c2f5a
parent 554 3e851e849090
child 621 26952d77efb5
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.7.6
     1 <?xml version="1.0"?>
     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.6</version>
     8     </parent>
     9     <groupId>org.netbeans.html</groupId>
    10     <artifactId>ko-archetype-test</artifactId>
    11     <version>0.7.6</version>
    12     <name>Knockout 4 Java Archetype Test</name>
    13     <url>http://maven.apache.org</url>
    14     <description>Verifies the Knockout &amp; net.java.html.json archetype behaves properly.</description>
    15     <properties>
    16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     </properties>
    18     <build>
    19         <plugins>
    20             <plugin>
    21                 <artifactId>maven-failsafe-plugin</artifactId>
    22                 <version>2.16</version>
    23                 <executions>
    24                     <execution>
    25                         <goals>
    26                             <goal>integration-test</goal>
    27                             <goal>verify</goal>
    28                         </goals>
    29                     </execution>
    30                 </executions>
    31             </plugin>
    32         </plugins>
    33     </build>
    34     <dependencies>
    35         <dependency>
    36             <groupId>org.apidesign.html</groupId>
    37             <artifactId>knockout4j-archetype</artifactId>
    38             <version>${project.version}</version>
    39         </dependency>
    40         <dependency>
    41             <groupId>org.testng</groupId>
    42             <artifactId>testng</artifactId>
    43             <scope>test</scope>
    44         </dependency>
    45         <dependency>                                
    46             <groupId>org.apache.maven.shared</groupId>
    47             <artifactId>maven-verifier</artifactId>
    48             <version>1.4</version>
    49             <scope>test</scope>
    50         </dependency>
    51         <dependency>
    52             <groupId>${project.groupId}</groupId>
    53             <artifactId>ko4j</artifactId>
    54             <version>${project.version}</version>
    55             <scope>provided</scope>
    56         </dependency>
    57     </dependencies>
    58 </project>