benchmarks/matrix-multiplication/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 388 e1f64baf73b9
child 727 073a7cd706a7
permissions -rw-r--r--
Rebasing the Inflater support on jzlib which, unlike GNU ClassPath, has correct implementation of Huffman code. Making the implementation more easily testable by turning Inflater and ZipInputStream into pure delegates. Current implementation is going to need proper long support.
     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   <dependencies>
    32     <dependency>
    33       <groupId>org.apidesign.bck2brwsr</groupId>
    34       <artifactId>emul.mini</artifactId>
    35       <version>0.3-SNAPSHOT</version>
    36     </dependency>
    37     <dependency>
    38       <groupId>org.testng</groupId>
    39       <artifactId>testng</artifactId>
    40       <version>6.5.2</version>
    41       <scope>test</scope>
    42       <exclusions>
    43         <exclusion>
    44           <artifactId>junit</artifactId>
    45           <groupId>junit</groupId>
    46         </exclusion>
    47       </exclusions>
    48     </dependency>
    49     <dependency>
    50       <groupId>org.apidesign.bck2brwsr</groupId>
    51       <artifactId>vmtest</artifactId>
    52       <version>0.3-SNAPSHOT</version>
    53       <scope>test</scope>
    54     </dependency>
    55   </dependencies>
    56 </project>