benchmarks/sieve/pom.xml
changeset 1854 826eb936c9a8
parent 1849 bc07f6a1e639
child 1860 4ce38f21f4cd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/benchmarks/sieve/pom.xml	Sun Jan 24 12:08:45 2016 +0100
     1.3 @@ -0,0 +1,103 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +
     1.8 +  <groupId>org.apidesign.bck2brwsr</groupId>
     1.9 +  <artifactId>sieve</artifactId>
    1.10 +  <version>1.0-SNAPSHOT</version>
    1.11 +  <packaging>jar</packaging>
    1.12 +  <parent>
    1.13 +    <artifactId>benchmarks</artifactId>
    1.14 +    <groupId>org.apidesign.bck2brwsr</groupId>
    1.15 +    <version>1.0-SNAPSHOT</version>
    1.16 +  </parent>
    1.17 +
    1.18 +  <name>Sieve of Eratosthenes</name>
    1.19 +
    1.20 +  <properties>
    1.21 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.22 +  </properties>
    1.23 +
    1.24 +  <build>
    1.25 +      <plugins>
    1.26 +          <plugin>
    1.27 +            <groupId>org.apache.maven.plugins</groupId>
    1.28 +            <artifactId>maven-compiler-plugin</artifactId>
    1.29 +            <version>2.3.2</version>
    1.30 +            <configuration>
    1.31 +               <source>1.7</source>
    1.32 +               <target>1.7</target>
    1.33 +            </configuration>
    1.34 +          </plugin>
    1.35 +          <plugin>
    1.36 +              <groupId>org.apache.maven.plugins</groupId>
    1.37 +              <artifactId>maven-deploy-plugin</artifactId>
    1.38 +              <version>2.7</version>
    1.39 +              <configuration>
    1.40 +                  <skip>true</skip>
    1.41 +              </configuration>
    1.42 +          </plugin>      
    1.43 +          <plugin>
    1.44 +              <groupId>org.codehaus.mojo</groupId>
    1.45 +              <artifactId>xml-maven-plugin</artifactId>
    1.46 +              <version>1.0</version>
    1.47 +              <executions>
    1.48 +                  <execution>
    1.49 +                      <goals>
    1.50 +                          <goal>transform</goal>
    1.51 +                      </goals>
    1.52 +                      <phase>install</phase>
    1.53 +                  </execution>
    1.54 +              </executions>
    1.55 +              <configuration>
    1.56 +                  <transformationSets>
    1.57 +                      <transformationSet>
    1.58 +                          <dir>target/surefire-reports</dir>
    1.59 +                          <outputDir>target/surefire-reports</outputDir>
    1.60 +                          <includes>
    1.61 +                              <include>TEST*.xml</include>
    1.62 +                          </includes>
    1.63 +                          <stylesheet>src/main/select-time.xsl</stylesheet>
    1.64 +                          <fileMappers>
    1.65 +                              <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
    1.66 +                                  <targetExtension>.csv</targetExtension>
    1.67 +                              </fileMapper>
    1.68 +                          </fileMappers>                          
    1.69 +                      </transformationSet>
    1.70 +                  </transformationSets>
    1.71 +              </configuration>
    1.72 +          </plugin>
    1.73 +      </plugins>
    1.74 +  </build>
    1.75 +  
    1.76 +  <dependencies>
    1.77 +    <dependency>
    1.78 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.79 +      <artifactId>emul.mini</artifactId>
    1.80 +      <version>${project.version}</version>
    1.81 +    </dependency>
    1.82 +    <dependency>
    1.83 +      <groupId>org.testng</groupId>
    1.84 +      <artifactId>testng</artifactId>
    1.85 +      <scope>test</scope>
    1.86 +      <exclusions>
    1.87 +        <exclusion>
    1.88 +          <artifactId>junit</artifactId>
    1.89 +          <groupId>junit</groupId>
    1.90 +        </exclusion>
    1.91 +      </exclusions>
    1.92 +    </dependency>
    1.93 +    <dependency>
    1.94 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.95 +      <artifactId>vmtest</artifactId>
    1.96 +      <version>${project.version}</version>
    1.97 +      <scope>test</scope>
    1.98 +    </dependency>
    1.99 +    <dependency>
   1.100 +      <groupId>org.apidesign.bck2brwsr</groupId>
   1.101 +      <artifactId>launcher.http</artifactId>
   1.102 +      <version>${project.version}</version>
   1.103 +      <scope>test</scope>
   1.104 +    </dependency>
   1.105 +  </dependencies>
   1.106 +</project>