rt/archetype/pom.xml
changeset 1274 c4f83529954d
parent 1273 37ad459579bc
child 1275 913732a84aa3
     1.1 --- a/rt/archetype/pom.xml	Mon Sep 09 17:34:30 2013 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,87 +0,0 @@
     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.8-SNAPSHOT</version>
    1.11 -  </parent>
    1.12 -  <groupId>org.apidesign.bck2brwsr</groupId>
    1.13 -  <artifactId>bck2brwsr-archetype-html-sample</artifactId>
    1.14 -  <version>0.8-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 -      <resources>
    1.24 -          <resource>
    1.25 -            <directory>src/main/resources</directory>
    1.26 -            <filtering>true</filtering>
    1.27 -            <includes>
    1.28 -                <include>**/pom.xml</include>
    1.29 -            </includes>
    1.30 -          </resource>
    1.31 -          <resource>
    1.32 -            <directory>src/main/resources</directory>
    1.33 -            <filtering>false</filtering>
    1.34 -            <excludes>
    1.35 -                <exclude>**/pom.xml</exclude>
    1.36 -            </excludes>
    1.37 -          </resource>
    1.38 -      </resources>      
    1.39 -      <plugins>
    1.40 -          <plugin>
    1.41 -              <groupId>org.apache.maven.plugins</groupId>
    1.42 -              <artifactId>maven-compiler-plugin</artifactId>
    1.43 -              <version>2.3.2</version>
    1.44 -              <configuration>
    1.45 -                  <source>1.6</source>
    1.46 -                  <target>1.6</target>
    1.47 -              </configuration>
    1.48 -          </plugin>
    1.49 -          <plugin>
    1.50 -              <groupId>org.apache.maven.plugins</groupId>
    1.51 -              <artifactId>maven-resources-plugin</artifactId>
    1.52 -              <version>2.6</version>
    1.53 -              <configuration>
    1.54 -                  <escapeString>\</escapeString>
    1.55 -                  <target>1.6</target>
    1.56 -              </configuration>
    1.57 -          </plugin>
    1.58 -          <plugin>
    1.59 -              <groupId>org.apache.maven.plugins</groupId>
    1.60 -              <artifactId>maven-surefire-plugin</artifactId>
    1.61 -              <configuration>
    1.62 -                  <skipTests>true</skipTests>
    1.63 -              </configuration>
    1.64 -              <executions>
    1.65 -                  <execution>
    1.66 -                      <id>test</id>
    1.67 -                      <goals>
    1.68 -                          <goal>test</goal>
    1.69 -                      </goals>
    1.70 -                      <phase>integration-test</phase>
    1.71 -                      <configuration>
    1.72 -                          <additionalClasspathElements>
    1.73 -                              <additionalClasspathElement>${project.build.directory}/bck2brwsr-archetype-html-sample-${project.version}.jar</additionalClasspathElement>
    1.74 -                          </additionalClasspathElements>
    1.75 -                          <skipTests>false</skipTests>
    1.76 -                      </configuration>
    1.77 -                  </execution>
    1.78 -                  
    1.79 -              </executions>
    1.80 -          </plugin>
    1.81 -      </plugins>
    1.82 -  </build>
    1.83 -  <dependencies>
    1.84 -      <dependency>
    1.85 -          <groupId>org.testng</groupId>
    1.86 -          <artifactId>testng</artifactId>
    1.87 -          <scope>test</scope>
    1.88 -      </dependency>
    1.89 -  </dependencies>
    1.90 -</project>