javaquery/demo-calculator-dynamic/pom.xml
branchemul
changeset 741 1343f52164f3
parent 554 05224402145d
child 743 6dc02c92ba9e
     1.1 --- a/javaquery/demo-calculator-dynamic/pom.xml	Wed Jan 23 20:39:23 2013 +0100
     1.2 +++ b/javaquery/demo-calculator-dynamic/pom.xml	Fri Feb 15 19:24:34 2013 +0100
     1.3 @@ -40,14 +40,47 @@
     1.4                 <target>1.7</target>
     1.5              </configuration>
     1.6           </plugin>
     1.7 +         <plugin>
     1.8 +             <groupId>org.apache.maven.plugins</groupId>
     1.9 +             <artifactId>maven-jar-plugin</artifactId>
    1.10 +             <version>2.4</version>
    1.11 +             <configuration>
    1.12 +                 <archive>
    1.13 +                     <manifest>
    1.14 +                         <addClasspath>true</addClasspath>
    1.15 +                         <classpathPrefix>lib/</classpathPrefix>
    1.16 +                         <mainClass>org.apidesign.bck2brwsr.demo.calc.staticcompilation.Calc</mainClass>
    1.17 +                     </manifest>
    1.18 +                 </archive>
    1.19 +             </configuration>
    1.20 +         </plugin>
    1.21 +         <plugin>
    1.22 +            <artifactId>maven-assembly-plugin</artifactId>
    1.23 +                <version>2.4</version>
    1.24 +                <executions>
    1.25 +                    <execution>
    1.26 +                        <id>distro-assembly</id>
    1.27 +                        <phase>package</phase>
    1.28 +                        <goals>
    1.29 +                            <goal>single</goal>
    1.30 +                        </goals>
    1.31 +                        <configuration>
    1.32 +                            <descriptors>
    1.33 +                                <descriptor>src/main/assembly/bck2brwsr.xml</descriptor>
    1.34 +                            </descriptors>
    1.35 +                        </configuration>
    1.36 +                    </execution>
    1.37 +                </executions>                
    1.38 +            </plugin>      
    1.39        </plugins>
    1.40    </build>
    1.41  
    1.42    <dependencies>
    1.43      <dependency>
    1.44        <groupId>org.apidesign.bck2brwsr</groupId>
    1.45 -      <artifactId>emul.mini</artifactId>
    1.46 +      <artifactId>emul</artifactId>
    1.47        <version>0.3-SNAPSHOT</version>
    1.48 +      <classifier>rt</classifier>
    1.49      </dependency>
    1.50      <dependency>
    1.51        <groupId>org.apidesign.bck2brwsr</groupId>
    1.52 @@ -60,5 +93,13 @@
    1.53        <version>6.5.2</version>
    1.54        <scope>test</scope>
    1.55      </dependency>
    1.56 +    <dependency>
    1.57 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.58 +      <artifactId>vm4brwsr</artifactId>
    1.59 +      <classifier>js</classifier>
    1.60 +      <type>zip</type>
    1.61 +      <version>0.3-SNAPSHOT</version>
    1.62 +      <scope>provided</scope>
    1.63 +    </dependency>
    1.64    </dependencies>
    1.65  </project>