rt/archetype/pom.xml
changeset 870 448bed1f6d5a
child 896 30e9ac29654f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/archetype/pom.xml	Fri Mar 22 00:02:21 2013 +0100
     1.3 @@ -0,0 +1,62 @@
     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 +    <artifactId>rt</artifactId>
     1.9 +    <groupId>org.apidesign.bck2brwsr</groupId>
    1.10 +    <version>0.5-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +  <groupId>org.apidesign.bck2brwsr</groupId>
    1.13 +  <artifactId>bck2brwsr-archetype-html-sample</artifactId>
    1.14 +  <version>0.5-SNAPSHOT</version>
    1.15 +  <packaging>jar</packaging>
    1.16 +  <name>Bck2Brwsr Maven Archetype</name>
    1.17 +  <description>
    1.18 +      Creates a skeletal HTML page and associated Java controller class.
    1.19 +      Runs in any browser (even without Java plugin) with the help of Bck2Brwsr
    1.20 +      virtual machine.
    1.21 +  </description>
    1.22 +  <build>
    1.23 +      <plugins>
    1.24 +          <plugin>
    1.25 +              <groupId>org.apache.maven.plugins</groupId>
    1.26 +              <artifactId>maven-compiler-plugin</artifactId>
    1.27 +              <version>2.3.2</version>
    1.28 +              <configuration>
    1.29 +                  <source>1.6</source>
    1.30 +                  <target>1.6</target>
    1.31 +              </configuration>
    1.32 +          </plugin>
    1.33 +          <plugin>
    1.34 +              <groupId>org.apache.maven.plugins</groupId>
    1.35 +              <artifactId>maven-surefire-plugin</artifactId>
    1.36 +              <configuration>
    1.37 +                  <skipTests>true</skipTests>
    1.38 +              </configuration>
    1.39 +              <executions>
    1.40 +                  <execution>
    1.41 +                      <id>test</id>
    1.42 +                      <goals>
    1.43 +                          <goal>test</goal>
    1.44 +                      </goals>
    1.45 +                      <phase>integration-test</phase>
    1.46 +                      <configuration>
    1.47 +                          <additionalClasspathElements>
    1.48 +                              <additionalClasspathElement>${project.build.directory}/bck2brwsr-archetype-html-sample-${project.version}.jar</additionalClasspathElement>
    1.49 +                          </additionalClasspathElements>
    1.50 +                          <skipTests>false</skipTests>
    1.51 +                      </configuration>
    1.52 +                  </execution>
    1.53 +                  
    1.54 +              </executions>
    1.55 +          </plugin>
    1.56 +      </plugins>
    1.57 +  </build>
    1.58 +  <dependencies>
    1.59 +      <dependency>
    1.60 +          <groupId>org.testng</groupId>
    1.61 +          <artifactId>testng</artifactId>
    1.62 +          <scope>test</scope>
    1.63 +      </dependency>
    1.64 +  </dependencies>
    1.65 +</project>