benchmarks/matrix-multiplication/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 14:07:02 +0100
changeset 381 70d15cf323ba
parent 313 398110b3eee6
child 388 e1f64baf73b9
permissions -rw-r--r--
Can execute the matrix multiplication test using VMTest
     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       </plugins>
    29   </build>
    30   
    31   <profiles>
    32     <profile>
    33       <id>run-benchmarks</id>
    34       <activation>
    35         <property><name>bck2brwsr.runBenchmarks.browsers</name></property>
    36       </activation>
    37 
    38       <build>
    39         <plugins>
    40 
    41           <plugin>
    42             <groupId>com.googlecode.jstd-maven-plugin</groupId>
    43             <artifactId>jstd-maven-plugin</artifactId>
    44             <version>1.3.2.5</version>
    45             <configuration>
    46                 <port>9876</port>
    47                 <browser>${bck2brwsr.runBenchmarks.browsers}</browser>
    48                 <browserTimeout>720</browserTimeout>
    49                 <tests>all</tests>
    50                 <config>jsTestDriver.conf</config>
    51                 <reset>true</reset>
    52                 <testOutput>${basedir}/target/testOutput</testOutput>
    53                 <!-- runnerMode>DEBUG</runnerMode -->
    54             </configuration>
    55             <executions>
    56                 <execution>
    57                     <id>run-tests</id>
    58                     <goals>
    59                         <goal>test</goal>
    60                     </goals>
    61                 </execution>
    62             </executions>
    63           </plugin>
    64 
    65         </plugins>
    66       </build>
    67     </profile>
    68   </profiles>
    69 
    70   <dependencies>
    71     <dependency>
    72       <groupId>org.apidesign.bck2brwsr</groupId>
    73       <artifactId>emul</artifactId>
    74       <version>0.3-SNAPSHOT</version>
    75     </dependency>
    76     <dependency>
    77       <groupId>org.testng</groupId>
    78       <artifactId>testng</artifactId>
    79       <version>6.5.2</version>
    80       <scope>test</scope>
    81       <exclusions>
    82         <exclusion>
    83           <artifactId>junit</artifactId>
    84           <groupId>junit</groupId>
    85         </exclusion>
    86       </exclusions>
    87     </dependency>
    88     <dependency>
    89       <groupId>org.apidesign.bck2brwsr</groupId>
    90       <artifactId>vmtest</artifactId>
    91       <version>0.3-SNAPSHOT</version>
    92       <scope>test</scope>
    93     </dependency>
    94   </dependencies>
    95 </project>