benchmarks/matrix-multiplication/pom.xml
changeset 836 eefe5c8438d4
parent 821 60caf5806aa8
child 838 5141f3baf9f0
     1.1 --- a/benchmarks/matrix-multiplication/pom.xml	Thu Mar 07 23:34:33 2013 +0100
     1.2 +++ b/benchmarks/matrix-multiplication/pom.xml	Mon Mar 11 19:41:06 2013 +0100
     1.3 @@ -37,6 +37,36 @@
     1.4                    <skip>true</skip>
     1.5                </configuration>
     1.6            </plugin>      
     1.7 +          <plugin>
     1.8 +              <groupId>org.codehaus.mojo</groupId>
     1.9 +              <artifactId>xml-maven-plugin</artifactId>
    1.10 +              <version>1.0</version>
    1.11 +              <executions>
    1.12 +                  <execution>
    1.13 +                      <goals>
    1.14 +                          <goal>transform</goal>
    1.15 +                      </goals>
    1.16 +                      <phase>install</phase>
    1.17 +                  </execution>
    1.18 +              </executions>
    1.19 +              <configuration>
    1.20 +                  <transformationSets>
    1.21 +                      <transformationSet>
    1.22 +                          <dir>target/surefire-reports</dir>
    1.23 +                          <outputDir>target/surefire-reports</outputDir>
    1.24 +                          <includes>
    1.25 +                              <include>TEST*.xml</include>
    1.26 +                          </includes>
    1.27 +                          <stylesheet>src/main/select-time.xsl</stylesheet>
    1.28 +                          <fileMappers>
    1.29 +                              <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
    1.30 +                                  <targetExtension>.properties</targetExtension>
    1.31 +                              </fileMapper>
    1.32 +                          </fileMappers>                          
    1.33 +                      </transformationSet>
    1.34 +                  </transformationSets>
    1.35 +              </configuration>
    1.36 +          </plugin>
    1.37        </plugins>
    1.38    </build>
    1.39