mojo/src/main/resources/archetype-resources/pom.xml
changeset 421 0236ad6ab4d2
parent 375 5751fe604e6b
child 422 8e0818ad6c4d
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mojo/src/main/resources/archetype-resources/pom.xml	Wed Jan 09 20:55:26 2013 +0100
     1.3 @@ -0,0 +1,58 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.6 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +
     1.9 +  <groupId>${groupId}</groupId>
    1.10 +  <artifactId>${artifactId}</artifactId>
    1.11 +  <version>${version}</version>
    1.12 +  <packaging>jar</packaging>
    1.13 +
    1.14 +  <name>${artifactId}</name>
    1.15 +
    1.16 +  <properties>
    1.17 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.18 +  </properties>
    1.19 +  <build>
    1.20 +      <plugins>
    1.21 +            <plugin>
    1.22 +                <groupId>org.apidesign.bck2brwsr</groupId>
    1.23 +                <artifactId>mojo</artifactId>
    1.24 +                <version>0.3-SNAPSHOT</version>
    1.25 +                <executions>
    1.26 +                    <execution>
    1.27 +                        <goals>
    1.28 +                            <goal>brwsr</goal>
    1.29 +                        </goals>
    1.30 +                    </execution>
    1.31 +                </executions>
    1.32 +                <configuration>
    1.33 +                    <startpackage>${package}</startpackage>
    1.34 +                    <startpage>index.xhtml</startpage>
    1.35 +                </configuration>
    1.36 +            </plugin>
    1.37 +         <plugin>
    1.38 +            <groupId>org.apache.maven.plugins</groupId>
    1.39 +            <artifactId>maven-compiler-plugin</artifactId>
    1.40 +            <version>2.3.2</version>
    1.41 +            <configuration>
    1.42 +               <source>1.7</source>
    1.43 +               <target>1.7</target>
    1.44 +            </configuration>
    1.45 +         </plugin>
    1.46 +      </plugins>
    1.47 +  </build>
    1.48 +
    1.49 +  <dependencies>
    1.50 +    <dependency>
    1.51 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.52 +      <artifactId>emul</artifactId>
    1.53 +      <version>0.3-SNAPSHOT</version>
    1.54 +    </dependency>
    1.55 +    <dependency>
    1.56 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.57 +      <artifactId>javaquery.api</artifactId>
    1.58 +      <version>0.3-SNAPSHOT</version>
    1.59 +    </dependency>
    1.60 +  </dependencies>
    1.61 +</project>