rt/emul/brwsrtest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 09 Mar 2013 14:12:29 +0100
changeset 827 309878691222
parent 826 fb751bcc23fd
child 896 30e9ac29654f
permissions -rw-r--r--
systemProperties has been deprecated, using systemPropertyVariables
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign.bck2brwsr</groupId>
     7     <artifactId>emul.pom</artifactId>
     8     <version>0.5-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>brwsrtest</artifactId>
    12   <version>0.5-SNAPSHOT</version>
    13   <name>Tests Inside Real Browser</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <build>
    19       <plugins>
    20           <plugin>
    21            <groupId>org.apache.maven.plugins</groupId>
    22            <artifactId>maven-deploy-plugin</artifactId>
    23            <version>2.7</version>
    24            <configuration>
    25              <skip>true</skip>
    26            </configuration>
    27          </plugin>      
    28           <plugin>
    29               <groupId>org.apache.maven.plugins</groupId>
    30               <artifactId>maven-surefire-plugin</artifactId>
    31               <configuration>
    32                   <systemPropertyVariables>
    33                       <vmtest.js>brwsr</vmtest.js>
    34                   </systemPropertyVariables>
    35               </configuration>
    36           </plugin>
    37       </plugins>
    38   </build>
    39   <dependencies>
    40     <dependency>
    41       <groupId>${project.groupId}</groupId>
    42       <artifactId>vmtest</artifactId>
    43       <version>${project.version}</version>
    44       <scope>test</scope>
    45     </dependency>
    46   </dependencies>
    47 </project>