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
     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>org.apidesign.bck2brwsr</groupId>
     7   <artifactId>matrix.multiplication</artifactId>
     8   <version>0.3-SNAPSHOT</version>
     9   <packaging>jar</packaging>
    10 
    11   <name>Matrix multiplication</name>
    12 
    13   <properties>
    14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    15   </properties>
    16 
    17   <build>
    18       <plugins>
    19           <plugin>
    20             <groupId>org.apache.maven.plugins</groupId>
    21             <artifactId>maven-compiler-plugin</artifactId>
    22             <version>2.3.2</version>
    23             <configuration>
    24                <source>1.7</source>
    25                <target>1.7</target>
    26             </configuration>
    27           </plugin>
    28           
    29           <plugin>
    30               <groupId>org.apidesign.bck2brwsr</groupId>
    31               <artifactId>mojo</artifactId>
    32               <version>0.3-SNAPSHOT</version>
    33               <executions>
    34                   <execution>
    35                       <goals>
    36                           <goal>j2js</goal>
    37                       </goals>
    38                   </execution>
    39               </executions>
    40           </plugin>
    41           
    42       </plugins>
    43   </build>
    44   
    45   <profiles>
    46     <profile>
    47       <id>run-benchmarks</id>
    48       <activation>
    49         <property><name>bck2brwsr.runBenchmarks.browsers</name></property>
    50       </activation>
    51 
    52       <build>
    53         <plugins>
    54 
    55           <plugin>
    56             <groupId>com.googlecode.jstd-maven-plugin</groupId>
    57             <artifactId>jstd-maven-plugin</artifactId>
    58             <version>1.3.2.5</version>
    59             <configuration>
    60                 <port>9876</port>
    61                 <browser>${bck2brwsr.runBenchmarks.browsers}</browser>
    62                 <browserTimeout>720</browserTimeout>
    63                 <tests>all</tests>
    64                 <config>jsTestDriver.conf</config>
    65                 <reset>true</reset>
    66                 <testOutput>${basedir}/target/testOutput</testOutput>
    67                 <!-- runnerMode>DEBUG</runnerMode -->
    68             </configuration>
    69             <executions>
    70                 <execution>
    71                     <id>run-tests</id>
    72                     <goals>
    73                         <goal>test</goal>
    74                     </goals>
    75                 </execution>
    76             </executions>
    77           </plugin>
    78 
    79         </plugins>
    80       </build>
    81     </profile>
    82   </profiles>
    83 
    84   <dependencies>
    85     <dependency>
    86       <groupId>org.apidesign.bck2brwsr</groupId>
    87       <artifactId>emul</artifactId>
    88       <version>0.3-SNAPSHOT</version>
    89     </dependency>
    90     <dependency>
    91         <groupId>com.googlecode.jstd-maven-plugin</groupId>
    92         <artifactId>jstd-maven-plugin</artifactId>
    93         <version>1.3.2.5</version>
    94         <scope>test</scope>
    95     </dependency>
    96   </dependencies>
    97   
    98   <repositories>
    99         <repository>
   100             <id>jstd-maven-plugin google code repo</id>
   101             <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
   102         </repository>
   103   </repositories>
   104   <pluginRepositories>
   105         <pluginRepository>
   106             <id>jstd-maven-plugin google code repo</id>
   107             <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
   108         </pluginRepository>
   109   </pluginRepositories>
   110   
   111 </project>