mojo/src/main/resources/archetype-resources/pom.xml
branchemul
changeset 744 341d8ed644df
parent 631 2c2331a0bb93
child 747 ae352b763959
     1.1 --- a/mojo/src/main/resources/archetype-resources/pom.xml	Fri Feb 01 14:48:40 2013 +0100
     1.2 +++ b/mojo/src/main/resources/archetype-resources/pom.xml	Fri Feb 15 20:09:36 2013 +0100
     1.3 @@ -27,7 +27,7 @@
     1.4                      </execution>
     1.5                  </executions>
     1.6                  <configuration>
     1.7 -                    <startpage>${package.replace('.','/')}/index.xhtml</startpage>
     1.8 +                    <startpage>${package.replace('.','/')}/index.html</startpage>
     1.9                  </configuration>
    1.10              </plugin>
    1.11           <plugin>
    1.12 @@ -39,14 +39,46 @@
    1.13                 <target>1.7</target>
    1.14              </configuration>
    1.15           </plugin>
    1.16 +         <plugin>
    1.17 +             <groupId>org.apache.maven.plugins</groupId>
    1.18 +             <artifactId>maven-jar-plugin</artifactId>
    1.19 +             <version>2.4</version>
    1.20 +             <configuration>
    1.21 +                 <archive>
    1.22 +                     <manifest>
    1.23 +                         <addClasspath>true</addClasspath>
    1.24 +                         <classpathPrefix>lib/</classpathPrefix>
    1.25 +                     </manifest>
    1.26 +                 </archive>
    1.27 +             </configuration>
    1.28 +         </plugin>
    1.29 +         <plugin>
    1.30 +             <artifactId>maven-assembly-plugin</artifactId>
    1.31 +             <version>2.4</version>
    1.32 +             <executions>
    1.33 +                 <execution>
    1.34 +                     <id>distro-assembly</id>
    1.35 +                     <phase>package</phase>
    1.36 +                     <goals>
    1.37 +                         <goal>single</goal>
    1.38 +                     </goals>
    1.39 +                     <configuration>
    1.40 +                         <descriptors>
    1.41 +                             <descriptor>bck2brwsr-assembly.xml</descriptor>
    1.42 +                         </descriptors>
    1.43 +                     </configuration>
    1.44 +                 </execution>
    1.45 +             </executions>                
    1.46 +         </plugin>      
    1.47        </plugins>
    1.48    </build>
    1.49  
    1.50    <dependencies>
    1.51      <dependency>
    1.52        <groupId>org.apidesign.bck2brwsr</groupId>
    1.53 -      <artifactId>emul.mini</artifactId>
    1.54 +      <artifactId>emul</artifactId>
    1.55        <version>0.3-SNAPSHOT</version>
    1.56 +      <classifier>rt</classifier>
    1.57      </dependency>
    1.58      <dependency>
    1.59        <groupId>org.apidesign.bck2brwsr</groupId>
    1.60 @@ -61,6 +93,14 @@
    1.61      </dependency>
    1.62      <dependency>
    1.63        <groupId>org.apidesign.bck2brwsr</groupId>
    1.64 +      <artifactId>vm4brwsr</artifactId>
    1.65 +      <classifier>js</classifier>
    1.66 +      <type>zip</type>
    1.67 +      <version>0.3-SNAPSHOT</version>
    1.68 +      <scope>provided</scope>
    1.69 +    </dependency>
    1.70 +    <dependency>
    1.71 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.72        <artifactId>vmtest</artifactId>
    1.73        <version>0.3-SNAPSHOT</version>
    1.74        <scope>test</scope>