rt/emul/compacttest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 28 Mar 2016 05:55:43 +0200
changeset 1914 88b00e03fc8f
parent 1911 fe2e6f5a2044
child 1918 17d09f3e5f08
permissions -rw-r--r--
Introducing vmtest.precompiled=<regexp> to verify that bck2brwsr generated resources are really used
     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     <parent>
     5         <groupId>org.apidesign.bck2brwsr</groupId>
     6         <artifactId>emul.pom</artifactId>
     7         <version>0.18</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>0.18</version>
    12     <name>Bck2Brwsr API Profile Tests</name>
    13     <url>http://maven.apache.org</url>
    14     <properties>
    15         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16     </properties>
    17     <dependencies>
    18         <dependency>
    19             <groupId>${project.groupId}</groupId>
    20             <artifactId>vmtest</artifactId>
    21             <version>${project.version}</version>
    22             <scope>test</scope>
    23         </dependency>
    24         <dependency>
    25             <groupId>${project.groupId}</groupId>
    26             <artifactId>launcher.http</artifactId>
    27             <version>${project.version}</version>
    28             <scope>test</scope>
    29         </dependency>
    30         <dependency>
    31             <groupId>${project.groupId}</groupId>
    32             <artifactId>launcher.http</artifactId>
    33             <version>${project.version}</version>
    34             <classifier>bck2brwsr</classifier>
    35             <scope>test</scope>
    36         </dependency>
    37         <dependency>
    38             <groupId>${project.groupId}</groupId>
    39             <artifactId>emul</artifactId>
    40             <classifier>rt</classifier>
    41             <version>${project.version}</version>
    42             <scope>test</scope>
    43         </dependency>
    44         <dependency>
    45             <groupId>${project.groupId}</groupId>
    46             <artifactId>emul</artifactId>
    47             <classifier>bck2brwsr</classifier>
    48             <version>${project.version}</version>
    49             <scope>test</scope>
    50         </dependency>
    51         <dependency>
    52             <groupId>org.netbeans.api</groupId>
    53             <artifactId>org-openide-util-lookup</artifactId>
    54             <scope>test</scope>
    55         </dependency>
    56     </dependencies>
    57     <build>
    58         <plugins>
    59             <plugin>
    60                 <groupId>org.apache.maven.plugins</groupId>
    61                 <artifactId>maven-compiler-plugin</artifactId>
    62                 <version>2.5.1</version>
    63                 <configuration>
    64                     <source>1.7</source>
    65                     <target>1.7</target>
    66                 </configuration>
    67             </plugin>
    68             <plugin>
    69                 <groupId>org.apache.maven.plugins</groupId>
    70                 <artifactId>maven-deploy-plugin</artifactId>
    71                 <version>2.8.2</version>
    72                 <configuration>
    73                     <skip>true</skip>
    74                 </configuration>
    75             </plugin>
    76             <plugin>
    77                 <groupId>org.apache.maven.plugins</groupId>
    78                 <artifactId>maven-surefire-plugin</artifactId>
    79                 <executions>
    80                     <execution>
    81                         <id>brwsr</id>
    82                         <goals>
    83                             <goal>test</goal>
    84                         </goals>
    85                         <phase>verify</phase>
    86                         <configuration>
    87                             <systemProperties>
    88                                 <vmtest.js>brwsr</vmtest.js>
    89                             </systemProperties>
    90                         </configuration>
    91                     </execution>
    92                 </executions>
    93                 <configuration>
    94                     <systemProperties>
    95                         <vmtest.precompiled>.*</vmtest.precompiled>
    96                     </systemProperties>
    97                 </configuration>
    98             </plugin>
    99         </plugins>
   100     </build>
   101 </project>