benchmarks/sieve/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 29 Apr 2016 08:32:49 +0200
branchrelease-0.19
changeset 1961 e9e1b1e863ba
parent 1913 37194f101d35
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.19
     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>sieve</artifactId>
     7   <version>0.19</version>
     8   <packaging>jar</packaging>
     9   <parent>
    10     <artifactId>benchmarks</artifactId>
    11     <groupId>org.apidesign.bck2brwsr</groupId>
    12     <version>0.19</version>
    13   </parent>
    14 
    15   <name>Sieve of Eratosthenes</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.apache.maven.plugins</groupId>
    42               <artifactId>maven-surefire-plugin</artifactId>
    43               <configuration>
    44                   <systemPropertyVariables>
    45                       <vmtest.js>brwsr</vmtest.js>
    46                   </systemPropertyVariables>
    47               </configuration>
    48           </plugin>
    49           <plugin>
    50               <groupId>org.codehaus.mojo</groupId>
    51               <artifactId>xml-maven-plugin</artifactId>
    52               <version>1.0</version>
    53               <executions>
    54                   <execution>
    55                       <goals>
    56                           <goal>transform</goal>
    57                       </goals>
    58                       <phase>install</phase>
    59                   </execution>
    60               </executions>
    61               <configuration>
    62                   <transformationSets>
    63                       <transformationSet>
    64                           <dir>target/surefire-reports</dir>
    65                           <outputDir>target/surefire-reports</outputDir>
    66                           <includes>
    67                               <include>TEST*.xml</include>
    68                           </includes>
    69                           <stylesheet>src/main/select-time.xsl</stylesheet>
    70                           <fileMappers>
    71                               <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
    72                                   <targetExtension>.csv</targetExtension>
    73                               </fileMapper>
    74                           </fileMappers>                          
    75                       </transformationSet>
    76                   </transformationSets>
    77               </configuration>
    78           </plugin>
    79       </plugins>
    80   </build>
    81   
    82   <dependencies>
    83     <dependency>
    84       <groupId>org.apidesign.bck2brwsr</groupId>
    85       <artifactId>emul.mini</artifactId>
    86       <version>${project.version}</version>
    87     </dependency>
    88     <dependency>
    89       <groupId>org.testng</groupId>
    90       <artifactId>testng</artifactId>
    91       <scope>test</scope>
    92       <exclusions>
    93         <exclusion>
    94           <artifactId>junit</artifactId>
    95           <groupId>junit</groupId>
    96         </exclusion>
    97       </exclusions>
    98     </dependency>
    99     <dependency>
   100       <groupId>org.apidesign.bck2brwsr</groupId>
   101       <artifactId>vmtest</artifactId>
   102       <version>${project.version}</version>
   103       <scope>test</scope>
   104     </dependency>
   105     <dependency>
   106       <groupId>org.apidesign.bck2brwsr</groupId>
   107       <artifactId>launcher.http</artifactId>
   108       <version>${project.version}</version>
   109       <scope>test</scope>
   110     </dependency>
   111   </dependencies>
   112 </project>