benchmarks/matrix-multiplication/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 12 Dec 2012 20:35:01 +0100
branchbenchmarks
changeset 313 398110b3eee6
parent 312 5a053b8f40ad
child 381 70d15cf323ba
permissions -rw-r--r--
Backed out changeset 5a053b8f40ad: Now when the test finally passed, we can increase the time out again.wq
Martin@268
     1
<?xml version="1.0"?>
Martin@268
     2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Martin@268
     3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Martin@268
     4
  <modelVersion>4.0.0</modelVersion>
Martin@268
     5
Martin@268
     6
  <groupId>org.apidesign.bck2brwsr</groupId>
Martin@268
     7
  <artifactId>matrix.multiplication</artifactId>
Martin@268
     8
  <version>0.3-SNAPSHOT</version>
Martin@268
     9
  <packaging>jar</packaging>
Martin@268
    10
Martin@268
    11
  <name>Matrix multiplication</name>
Martin@268
    12
Martin@268
    13
  <properties>
Martin@268
    14
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Martin@268
    15
  </properties>
Martin@269
    16
Martin@268
    17
  <build>
Martin@268
    18
      <plugins>
Martin@268
    19
          <plugin>
Martin@268
    20
            <groupId>org.apache.maven.plugins</groupId>
Martin@268
    21
            <artifactId>maven-compiler-plugin</artifactId>
Martin@268
    22
            <version>2.3.2</version>
Martin@268
    23
            <configuration>
Martin@268
    24
               <source>1.7</source>
Martin@268
    25
               <target>1.7</target>
Martin@268
    26
            </configuration>
Martin@268
    27
          </plugin>
Martin@268
    28
          
Martin@268
    29
          <plugin>
Martin@268
    30
              <groupId>org.apidesign.bck2brwsr</groupId>
Martin@268
    31
              <artifactId>mojo</artifactId>
Martin@268
    32
              <version>0.3-SNAPSHOT</version>
Martin@268
    33
              <executions>
Martin@268
    34
                  <execution>
Martin@268
    35
                      <goals>
Martin@268
    36
                          <goal>j2js</goal>
Martin@268
    37
                      </goals>
Martin@268
    38
                  </execution>
Martin@268
    39
              </executions>
Martin@268
    40
          </plugin>
Martin@268
    41
          
Martin@308
    42
      </plugins>
Martin@308
    43
  </build>
Martin@308
    44
  
Martin@308
    45
  <profiles>
Martin@308
    46
    <profile>
Martin@308
    47
      <id>run-benchmarks</id>
Martin@308
    48
      <activation>
Martin@308
    49
        <property><name>bck2brwsr.runBenchmarks.browsers</name></property>
Martin@308
    50
      </activation>
Martin@308
    51
Martin@308
    52
      <build>
Martin@308
    53
        <plugins>
Martin@308
    54
Martin@268
    55
          <plugin>
Martin@268
    56
            <groupId>com.googlecode.jstd-maven-plugin</groupId>
Martin@268
    57
            <artifactId>jstd-maven-plugin</artifactId>
Martin@268
    58
            <version>1.3.2.5</version>
Martin@268
    59
            <configuration>
Martin@268
    60
                <port>9876</port>
Martin@308
    61
                <browser>${bck2brwsr.runBenchmarks.browsers}</browser>
jaroslav@313
    62
                <browserTimeout>720</browserTimeout>
Martin@268
    63
                <tests>all</tests>
Martin@268
    64
                <config>jsTestDriver.conf</config>
Martin@268
    65
                <reset>true</reset>
Martin@271
    66
                <testOutput>${basedir}/target/testOutput</testOutput>
Martin@295
    67
                <!-- runnerMode>DEBUG</runnerMode -->
Martin@268
    68
            </configuration>
Martin@268
    69
            <executions>
Martin@268
    70
                <execution>
Martin@268
    71
                    <id>run-tests</id>
Martin@268
    72
                    <goals>
Martin@268
    73
                        <goal>test</goal>
Martin@268
    74
                    </goals>
Martin@268
    75
                </execution>
Martin@268
    76
            </executions>
Martin@268
    77
          </plugin>
Martin@308
    78
Martin@308
    79
        </plugins>
Martin@308
    80
      </build>
Martin@308
    81
    </profile>
Martin@308
    82
  </profiles>
Martin@268
    83
Martin@268
    84
  <dependencies>
Martin@268
    85
    <dependency>
Martin@268
    86
      <groupId>org.apidesign.bck2brwsr</groupId>
Martin@268
    87
      <artifactId>emul</artifactId>
Martin@268
    88
      <version>0.3-SNAPSHOT</version>
Martin@268
    89
    </dependency>
Martin@268
    90
    <dependency>
Martin@268
    91
        <groupId>com.googlecode.jstd-maven-plugin</groupId>
Martin@268
    92
        <artifactId>jstd-maven-plugin</artifactId>
Martin@268
    93
        <version>1.3.2.5</version>
Martin@268
    94
        <scope>test</scope>
Martin@268
    95
    </dependency>
Martin@268
    96
  </dependencies>
Martin@268
    97
  
Martin@268
    98
  <repositories>
Martin@268
    99
        <repository>
Martin@268
   100
            <id>jstd-maven-plugin google code repo</id>
Martin@268
   101
            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
Martin@268
   102
        </repository>
Martin@268
   103
  </repositories>
Martin@268
   104
  <pluginRepositories>
Martin@268
   105
        <pluginRepository>
Martin@268
   106
            <id>jstd-maven-plugin google code repo</id>
Martin@268
   107
            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
Martin@268
   108
        </pluginRepository>
Martin@268
   109
  </pluginRepositories>
Martin@268
   110
  
Martin@268
   111
</project>