benchmarks/matrix-multiplication/pom.xml
branchbenchmarks
changeset 268 e01b65623f72
child 269 81e72988dcb5
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/benchmarks/matrix-multiplication/pom.xml	Wed Dec 05 11:18:09 2012 +0100
     1.3 @@ -0,0 +1,91 @@
     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>org.apidesign.bck2brwsr</groupId>
    1.10 +  <artifactId>matrix.multiplication</artifactId>
    1.11 +  <version>0.3-SNAPSHOT</version>
    1.12 +  <packaging>jar</packaging>
    1.13 +
    1.14 +  <name>Matrix multiplication</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.apache.maven.plugins</groupId>
    1.23 +            <artifactId>maven-compiler-plugin</artifactId>
    1.24 +            <version>2.3.2</version>
    1.25 +            <configuration>
    1.26 +               <source>1.7</source>
    1.27 +               <target>1.7</target>
    1.28 +            </configuration>
    1.29 +          </plugin>
    1.30 +          
    1.31 +          <plugin>
    1.32 +              <groupId>org.apidesign.bck2brwsr</groupId>
    1.33 +              <artifactId>mojo</artifactId>
    1.34 +              <version>0.3-SNAPSHOT</version>
    1.35 +              <executions>
    1.36 +                  <execution>
    1.37 +                      <goals>
    1.38 +                          <goal>j2js</goal>
    1.39 +                      </goals>
    1.40 +                  </execution>
    1.41 +              </executions>
    1.42 +          </plugin>
    1.43 +          
    1.44 +          <plugin>
    1.45 +            <groupId>com.googlecode.jstd-maven-plugin</groupId>
    1.46 +            <artifactId>jstd-maven-plugin</artifactId>
    1.47 +            <version>1.3.2.5</version>
    1.48 +            <configuration>
    1.49 +                <port>9876</port>
    1.50 +                <browser>/usr/bin/firefox</browser>
    1.51 +                <tests>all</tests>
    1.52 +                <config>jsTestDriver.conf</config>
    1.53 +                <reset>true</reset>
    1.54 +            </configuration>
    1.55 +            <executions>
    1.56 +                <execution>
    1.57 +                    <id>run-tests</id>
    1.58 +                    <goals>
    1.59 +                        <goal>test</goal>
    1.60 +                    </goals>
    1.61 +                </execution>
    1.62 +            </executions>
    1.63 +          </plugin>
    1.64 +      </plugins>
    1.65 +  </build>
    1.66 +
    1.67 +  <dependencies>
    1.68 +    <dependency>
    1.69 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.70 +      <artifactId>emul</artifactId>
    1.71 +      <version>0.3-SNAPSHOT</version>
    1.72 +    </dependency>
    1.73 +    <dependency>
    1.74 +        <groupId>com.googlecode.jstd-maven-plugin</groupId>
    1.75 +        <artifactId>jstd-maven-plugin</artifactId>
    1.76 +        <version>1.3.2.5</version>
    1.77 +        <scope>test</scope>
    1.78 +    </dependency>
    1.79 +  </dependencies>
    1.80 +  
    1.81 +  <repositories>
    1.82 +        <repository>
    1.83 +            <id>jstd-maven-plugin google code repo</id>
    1.84 +            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    1.85 +        </repository>
    1.86 +  </repositories>
    1.87 +  <pluginRepositories>
    1.88 +        <pluginRepository>
    1.89 +            <id>jstd-maven-plugin google code repo</id>
    1.90 +            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    1.91 +        </pluginRepository>
    1.92 +  </pluginRepositories>
    1.93 +  
    1.94 +</project>