rt/emul/compacttest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 28 Feb 2015 05:29:03 +0100
changeset 1802 fe7d038642e6
parent 1768 0d2acba8bcfd
child 1804 41f9eb4d6c25
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.14
     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.14</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>0.14</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-deploy-plugin</artifactId>
    57                 <version>2.8.2</version>
    58                 <configuration>
    59                     <skip>true</skip>
    60                 </configuration>
    61             </plugin>
    62             <plugin>
    63                 <groupId>org.apache.maven.plugins</groupId>
    64                 <artifactId>maven-surefire-plugin</artifactId>
    65                 <executions>
    66                     <execution>
    67                         <id>brwsr</id>
    68                         <goals>
    69                             <goal>test</goal>
    70                         </goals>
    71                         <phase>verify</phase>
    72                         <configuration>
    73                             <systemProperties>
    74                                 <vmtest.js>brwsr</vmtest.js>
    75                             </systemProperties>
    76                         </configuration>
    77                     </execution>
    78                 </executions>
    79             </plugin>     
    80         </plugins>
    81     </build>
    82 </project>