benchmarks/matrix-multiplication/pom.xml
author Martin Soch <Martin.Soch@oracle.com>
Thu, 06 Dec 2012 09:48:24 +0100
branchbenchmarks
changeset 271 43b6795196fd
parent 270 4cbe8ca081ce
child 293 77ad706571c2
permissions -rw-r--r--
JsTestDriver result will be always under benchmarks/.../ directory
     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       <resources>
    19         <resource>
    20           <directory>src/main/resources</directory>
    21           <excludes>
    22             <exclude>**/*.js</exclude>
    23           </excludes>
    24         </resource>
    25       </resources>
    26   
    27       <plugins>
    28           <plugin>
    29             <groupId>org.apache.maven.plugins</groupId>
    30             <artifactId>maven-compiler-plugin</artifactId>
    31             <version>2.3.2</version>
    32             <configuration>
    33                <source>1.7</source>
    34                <target>1.7</target>
    35             </configuration>
    36           </plugin>
    37           
    38           <plugin>
    39               <groupId>org.apidesign.bck2brwsr</groupId>
    40               <artifactId>mojo</artifactId>
    41               <version>0.3-SNAPSHOT</version>
    42               <executions>
    43                   <execution>
    44                       <goals>
    45                           <goal>j2js</goal>
    46                       </goals>
    47                   </execution>
    48               </executions>
    49           </plugin>
    50           
    51           <plugin>
    52             <groupId>com.googlecode.jstd-maven-plugin</groupId>
    53             <artifactId>jstd-maven-plugin</artifactId>
    54             <version>1.3.2.5</version>
    55             <configuration>
    56                 <port>9876</port>
    57                 <browser>/usr/bin/firefox</browser>
    58                 <tests>all</tests>
    59                 <config>jsTestDriver.conf</config>
    60                 <reset>true</reset>
    61                 <testOutput>${basedir}/target/testOutput</testOutput>
    62             </configuration>
    63             <executions>
    64                 <execution>
    65                     <id>run-tests</id>
    66                     <goals>
    67                         <goal>test</goal>
    68                     </goals>
    69                 </execution>
    70             </executions>
    71           </plugin>
    72       </plugins>
    73   </build>
    74 
    75   <dependencies>
    76     <dependency>
    77       <groupId>org.apidesign.bck2brwsr</groupId>
    78       <artifactId>emul</artifactId>
    79       <version>0.3-SNAPSHOT</version>
    80     </dependency>
    81     <dependency>
    82         <groupId>com.googlecode.jstd-maven-plugin</groupId>
    83         <artifactId>jstd-maven-plugin</artifactId>
    84         <version>1.3.2.5</version>
    85         <scope>test</scope>
    86     </dependency>
    87   </dependencies>
    88   
    89   <repositories>
    90         <repository>
    91             <id>jstd-maven-plugin google code repo</id>
    92             <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    93         </repository>
    94   </repositories>
    95   <pluginRepositories>
    96         <pluginRepository>
    97             <id>jstd-maven-plugin google code repo</id>
    98             <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    99         </pluginRepository>
   100   </pluginRepositories>
   101   
   102 </project>