benchmarks/jbox2d/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 29 Apr 2016 08:32:49 +0200
branchrelease-0.19
changeset 1961 e9e1b1e863ba
parent 1942 f8cc2a015ece
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>jbox2d</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>JBox2D in Action</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                       <vmtest.precompiled>.*</vmtest.precompiled>
    47                   </systemPropertyVariables>
    48               </configuration>
    49           </plugin>
    50       </plugins>
    51   </build>
    52   
    53   <dependencies>
    54     <dependency>
    55         <groupId>org.apidesign.bck2brwsr</groupId>
    56         <artifactId>emul</artifactId>
    57         <version>${project.version}</version>
    58         <classifier>bck2brwsr</classifier>
    59     </dependency>
    60     <dependency>
    61       <groupId>org.apidesign.bck2brwsr</groupId>
    62       <artifactId>emul</artifactId>
    63       <version>${project.version}</version>
    64       <classifier>rt</classifier>
    65     </dependency>
    66     <dependency>
    67       <groupId>org.testng</groupId>
    68       <artifactId>testng</artifactId>
    69       <scope>test</scope>
    70       <exclusions>
    71         <exclusion>
    72           <artifactId>junit</artifactId>
    73           <groupId>junit</groupId>
    74         </exclusion>
    75       </exclusions>
    76     </dependency>
    77     <dependency>
    78       <groupId>org.apidesign.bck2brwsr</groupId>
    79       <artifactId>vmtest</artifactId>
    80       <version>${project.version}</version>
    81       <scope>test</scope>
    82     </dependency>
    83     <dependency>
    84       <groupId>org.apidesign.bck2brwsr</groupId>
    85       <artifactId>launcher.http</artifactId>
    86       <version>${project.version}</version>
    87       <scope>test</scope>
    88     </dependency>
    89     <dependency>
    90       <groupId>org.apidesign.bck2brwsr</groupId>
    91       <artifactId>jbox2d-osgi</artifactId>
    92       <version>${project.version}</version>
    93       <exclusions>
    94         <exclusion>
    95           <groupId>org.jbox2d</groupId>
    96           <artifactId>jbox2d-library</artifactId>
    97         </exclusion>
    98       </exclusions>
    99     </dependency>
   100     <dependency>
   101       <groupId>org.apidesign.bck2brwsr</groupId>
   102       <artifactId>jbox2d-osgi</artifactId>
   103       <version>${project.version}</version>
   104       <classifier>bck2brwsr</classifier>
   105     </dependency>
   106   </dependencies>
   107 </project>