benchmarks/matrix-multiplication/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 13 Sep 2014 22:29:13 +0200
changeset 1691 e20d3d57c4b6
parent 1689 4440cfbcbee7
child 1698 8b615a496fb4
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4 
     5   <groupId>org.apidesign.bck2brwsr</groupId>
     6   <artifactId>matrix.multiplication</artifactId>
     7   <version>1.0-SNAPSHOT</version>
     8   <packaging>jar</packaging>
     9   <parent>
    10     <artifactId>benchmarks</artifactId>
    11     <groupId>org.apidesign.bck2brwsr</groupId>
    12     <version>1.0-SNAPSHOT</version>
    13   </parent>
    14 
    15   <name>Matrix multiplication</name>
    16 
    17   <properties>
    18     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    19   </properties>
    20 
    21   <build>
    22       <plugins>
    23           <plugin>
    24             <groupId>org.apache.maven.plugins</groupId>
    25             <artifactId>maven-compiler-plugin</artifactId>
    26             <version>2.3.2</version>
    27             <configuration>
    28                <source>1.7</source>
    29                <target>1.7</target>
    30             </configuration>
    31           </plugin>
    32           <plugin>
    33               <groupId>org.apache.maven.plugins</groupId>
    34               <artifactId>maven-deploy-plugin</artifactId>
    35               <version>2.7</version>
    36               <configuration>
    37                   <skip>true</skip>
    38               </configuration>
    39           </plugin>      
    40           <plugin>
    41               <groupId>org.codehaus.mojo</groupId>
    42               <artifactId>xml-maven-plugin</artifactId>
    43               <version>1.0</version>
    44               <executions>
    45                   <execution>
    46                       <goals>
    47                           <goal>transform</goal>
    48                       </goals>
    49                       <phase>install</phase>
    50                   </execution>
    51               </executions>
    52               <configuration>
    53                   <transformationSets>
    54                       <transformationSet>
    55                           <dir>target/surefire-reports</dir>
    56                           <outputDir>target/surefire-reports</outputDir>
    57                           <includes>
    58                               <include>TEST*.xml</include>
    59                           </includes>
    60                           <stylesheet>src/main/select-time.xsl</stylesheet>
    61                           <fileMappers>
    62                               <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
    63                                   <targetExtension>.csv</targetExtension>
    64                               </fileMapper>
    65                           </fileMappers>                          
    66                       </transformationSet>
    67                   </transformationSets>
    68               </configuration>
    69           </plugin>
    70       </plugins>
    71   </build>
    72   
    73   <dependencies>
    74     <dependency>
    75       <groupId>org.apidesign.bck2brwsr</groupId>
    76       <artifactId>emul.mini</artifactId>
    77       <version>1.0-SNAPSHOT</version>
    78     </dependency>
    79     <dependency>
    80       <groupId>org.testng</groupId>
    81       <artifactId>testng</artifactId>
    82       <version>6.5.2</version>
    83       <scope>test</scope>
    84       <exclusions>
    85         <exclusion>
    86           <artifactId>junit</artifactId>
    87           <groupId>junit</groupId>
    88         </exclusion>
    89       </exclusions>
    90     </dependency>
    91     <dependency>
    92       <groupId>org.apidesign.bck2brwsr</groupId>
    93       <artifactId>vmtest</artifactId>
    94       <version>1.0-SNAPSHOT</version>
    95       <scope>test</scope>
    96     </dependency>
    97     <dependency>
    98       <groupId>org.apidesign.bck2brwsr</groupId>
    99       <artifactId>launcher.http</artifactId>
   100       <version>1.0-SNAPSHOT</version>
   101       <scope>test</scope>
   102     </dependency>
   103   </dependencies>
   104 </project>