rt/emul/compacttest/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     <parent>
     5         <groupId>org.apidesign.bck2brwsr</groupId>
     6         <artifactId>emul.pom</artifactId>
     7         <version>0.19</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>0.19</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>vm4brwsr</artifactId>
    33             <version>${project.version}</version>
    34             <scope>test</scope>
    35         </dependency>
    36         <dependency>
    37             <groupId>${project.groupId}</groupId>
    38             <artifactId>emul</artifactId>
    39             <classifier>rt</classifier>
    40             <version>${project.version}</version>
    41             <scope>test</scope>
    42         </dependency>
    43         <dependency>
    44             <groupId>${project.groupId}</groupId>
    45             <artifactId>emul</artifactId>
    46             <classifier>bck2brwsr</classifier>
    47             <version>${project.version}</version>
    48             <scope>test</scope>
    49         </dependency>
    50         <dependency>
    51             <groupId>org.netbeans.api</groupId>
    52             <artifactId>org-openide-util-lookup</artifactId>
    53             <scope>test</scope>
    54         </dependency>
    55     </dependencies>
    56     <build>
    57         <plugins>
    58             <plugin>
    59                 <groupId>org.apache.maven.plugins</groupId>
    60                 <artifactId>maven-compiler-plugin</artifactId>
    61                 <version>2.5.1</version>
    62                 <configuration>
    63                     <source>1.7</source>
    64                     <target>1.7</target>
    65                 </configuration>
    66             </plugin>
    67             <plugin>
    68                 <groupId>org.apache.maven.plugins</groupId>
    69                 <artifactId>maven-deploy-plugin</artifactId>
    70                 <version>2.8.2</version>
    71                 <configuration>
    72                     <skip>true</skip>
    73                 </configuration>
    74             </plugin>
    75             <plugin>
    76                 <groupId>org.apache.maven.plugins</groupId>
    77                 <artifactId>maven-surefire-plugin</artifactId>
    78                 <executions>
    79                     <execution>
    80                         <id>brwsr</id>
    81                         <goals>
    82                             <goal>test</goal>
    83                         </goals>
    84                         <phase>verify</phase>
    85                         <configuration>
    86                             <systemProperties>
    87                                 <vmtest.js>brwsr</vmtest.js>
    88                             </systemProperties>
    89                         </configuration>
    90                     </execution>
    91                 </executions>
    92                 <configuration>
    93                     <systemProperties>
    94                         <vmtest.precompiled>.*</vmtest.precompiled>
    95                     </systemProperties>
    96                 </configuration>
    97             </plugin>
    98         </plugins>
    99     </build>
   100 </project>