rt/emul/compacttest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 26 Dec 2014 21:00:34 +0100
changeset 1757 837ea3e1cbaf
parent 1745 40d676c86a87
child 1759 e98ac4385490
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.12
     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.12</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>0.12</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>emul</artifactId>
    33             <classifier>rt</classifier>
    34             <version>${project.version}</version>
    35             <scope>test</scope>
    36         </dependency>
    37         <dependency>
    38             <groupId>org.netbeans.api</groupId>
    39             <artifactId>org-openide-util-lookup</artifactId>
    40             <scope>test</scope>
    41         </dependency>
    42     </dependencies>
    43     <build>
    44         <plugins>
    45             <plugin>
    46                 <groupId>org.apache.maven.plugins</groupId>
    47                 <artifactId>maven-compiler-plugin</artifactId>
    48                 <version>2.5.1</version>
    49                 <configuration>
    50                     <source>1.7</source>
    51                     <target>1.7</target>
    52                 </configuration>
    53             </plugin>
    54             <plugin>
    55                 <groupId>org.apache.maven.plugins</groupId>
    56                 <artifactId>maven-surefire-plugin</artifactId>
    57                 <executions>
    58                     <execution>
    59                         <id>brwsr</id>
    60                         <goals>
    61                             <goal>test</goal>
    62                         </goals>
    63                         <phase>verify</phase>
    64                         <configuration>
    65                             <systemProperties>
    66                                 <vmtest.js>brwsr</vmtest.js>
    67                             </systemProperties>
    68                         </configuration>
    69                     </execution>
    70                 </executions>
    71             </plugin>     
    72         </plugins>
    73     </build>
    74 </project>