mojo/src/main/resources/archetype-resources/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 01 Feb 2013 14:48:40 +0100
changeset 631 2c2331a0bb93
parent 554 05224402145d
child 728 c6db7a7322ab
child 744 341d8ed644df
permissions -rw-r--r--
Need to use fixed groupId
     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"
     3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     4   <modelVersion>4.0.0</modelVersion>
     5 
     6   <groupId>${groupId}</groupId>
     7   <artifactId>${artifactId}</artifactId>
     8   <version>${version}</version>
     9   <packaging>jar</packaging>
    10 
    11   <name>${artifactId}</name>
    12 
    13   <properties>
    14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    15   </properties>
    16   <build>
    17       <plugins>
    18             <plugin>
    19                 <groupId>org.apidesign.bck2brwsr</groupId>
    20                 <artifactId>mojo</artifactId>
    21                 <version>0.3-SNAPSHOT</version>
    22                 <executions>
    23                     <execution>
    24                         <goals>
    25                             <goal>brwsr</goal>
    26                         </goals>
    27                     </execution>
    28                 </executions>
    29                 <configuration>
    30                     <startpage>${package.replace('.','/')}/index.xhtml</startpage>
    31                 </configuration>
    32             </plugin>
    33          <plugin>
    34             <groupId>org.apache.maven.plugins</groupId>
    35             <artifactId>maven-compiler-plugin</artifactId>
    36             <version>2.3.2</version>
    37             <configuration>
    38                <source>1.7</source>
    39                <target>1.7</target>
    40             </configuration>
    41          </plugin>
    42       </plugins>
    43   </build>
    44 
    45   <dependencies>
    46     <dependency>
    47       <groupId>org.apidesign.bck2brwsr</groupId>
    48       <artifactId>emul.mini</artifactId>
    49       <version>0.3-SNAPSHOT</version>
    50     </dependency>
    51     <dependency>
    52       <groupId>org.apidesign.bck2brwsr</groupId>
    53       <artifactId>javaquery.api</artifactId>
    54       <version>0.3-SNAPSHOT</version>
    55     </dependency>
    56     <dependency>
    57       <groupId>org.testng</groupId>
    58       <artifactId>testng</artifactId>
    59       <version>6.5.2</version>
    60       <scope>test</scope>
    61     </dependency>
    62     <dependency>
    63       <groupId>org.apidesign.bck2brwsr</groupId>
    64       <artifactId>vmtest</artifactId>
    65       <version>0.3-SNAPSHOT</version>
    66       <scope>test</scope>
    67     </dependency>
    68   </dependencies>
    69 </project>