rt/emul/compacttest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 17 May 2015 14:28:16 +0200
changeset 1831 756236350081
parent 1809 72a0dbfa2ae8
child 1833 8ece64bedc99
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.15
     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.15</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>0.15</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         <dependency>
    43             <groupId>${project.groupId}</groupId>
    44             <artifactId>emul.mini</artifactId>
    45             <version>${project.version}</version>
    46             <scope>test</scope>
    47         </dependency>
    48     </dependencies>
    49     <build>
    50         <plugins>
    51             <plugin>
    52                 <groupId>org.apache.maven.plugins</groupId>
    53                 <artifactId>maven-compiler-plugin</artifactId>
    54                 <version>2.5.1</version>
    55                 <configuration>
    56                     <source>1.7</source>
    57                     <target>1.7</target>
    58                 </configuration>
    59             </plugin>
    60             <plugin>
    61                 <groupId>org.apache.maven.plugins</groupId>
    62                 <artifactId>maven-deploy-plugin</artifactId>
    63                 <version>2.8.2</version>
    64                 <configuration>
    65                     <skip>true</skip>
    66                 </configuration>
    67             </plugin>
    68             <plugin>
    69                 <groupId>org.apache.maven.plugins</groupId>
    70                 <artifactId>maven-surefire-plugin</artifactId>
    71                 <executions>
    72                     <execution>
    73                         <id>brwsr</id>
    74                         <goals>
    75                             <goal>test</goal>
    76                         </goals>
    77                         <phase>verify</phase>
    78                         <configuration>
    79                             <systemProperties>
    80                                 <vmtest.js>brwsr</vmtest.js>
    81                             </systemProperties>
    82                         </configuration>
    83                     </execution>
    84                 </executions>
    85             </plugin>     
    86         </plugins>
    87     </build>
    88 </project>