rt/archetype/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Mar 2013 12:01:37 +0100
changeset 898 6af977ff05bc
parent 896 30e9ac29654f
child 984 52a4a5f868bc
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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     <artifactId>rt</artifactId>
     6     <groupId>org.apidesign.bck2brwsr</groupId>
     7     <version>0.6-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>bck2brwsr-archetype-html-sample</artifactId>
    11   <version>0.6-SNAPSHOT</version>
    12   <packaging>jar</packaging>
    13   <name>Bck2Brwsr Maven Archetype</name>
    14   <description>
    15       Creates a skeletal HTML page and associated Java controller class.
    16       Runs in any browser (even without Java plugin) with the help of Bck2Brwsr
    17       virtual machine.
    18   </description>
    19   <build>
    20       <plugins>
    21           <plugin>
    22               <groupId>org.apache.maven.plugins</groupId>
    23               <artifactId>maven-compiler-plugin</artifactId>
    24               <version>2.3.2</version>
    25               <configuration>
    26                   <source>1.6</source>
    27                   <target>1.6</target>
    28               </configuration>
    29           </plugin>
    30           <plugin>
    31               <groupId>org.apache.maven.plugins</groupId>
    32               <artifactId>maven-surefire-plugin</artifactId>
    33               <configuration>
    34                   <skipTests>true</skipTests>
    35               </configuration>
    36               <executions>
    37                   <execution>
    38                       <id>test</id>
    39                       <goals>
    40                           <goal>test</goal>
    41                       </goals>
    42                       <phase>integration-test</phase>
    43                       <configuration>
    44                           <additionalClasspathElements>
    45                               <additionalClasspathElement>${project.build.directory}/bck2brwsr-archetype-html-sample-${project.version}.jar</additionalClasspathElement>
    46                           </additionalClasspathElements>
    47                           <skipTests>false</skipTests>
    48                       </configuration>
    49                   </execution>
    50                   
    51               </executions>
    52           </plugin>
    53       </plugins>
    54   </build>
    55   <dependencies>
    56       <dependency>
    57           <groupId>org.testng</groupId>
    58           <artifactId>testng</artifactId>
    59           <scope>test</scope>
    60       </dependency>
    61   </dependencies>
    62 </project>