rt/emul/compacttest/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Nov 2014 19:32:00 +0100
changeset 1723 3a1f262311cf
parent 1715 rt/emul/compact/pom.xml@dcd26599413f
child 1745 40d676c86a87
permissions -rw-r--r--
Separating compact profile tests into own project, so launcher.http can depend on compact profile JAR
     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>1.0-SNAPSHOT</version>
     8     </parent>
     9     <groupId>org.apidesign.bck2brwsr</groupId>
    10     <artifactId>compacttest</artifactId>
    11     <version>1.0-SNAPSHOT</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             <exclusions>
    30                 <exclusion>
    31                     <groupId>com.oracle</groupId>
    32                     <artifactId>javafx</artifactId>
    33                 </exclusion>
    34             </exclusions>
    35         </dependency>
    36         <dependency>
    37             <groupId>org.netbeans.api</groupId>
    38             <artifactId>org-openide-util-lookup</artifactId>
    39             <scope>test</scope>
    40         </dependency>
    41     </dependencies>
    42     <build>
    43         <plugins>
    44             <plugin>
    45                 <groupId>org.apache.maven.plugins</groupId>
    46                 <artifactId>maven-compiler-plugin</artifactId>
    47                 <version>2.5.1</version>
    48                 <configuration>
    49                     <source>1.7</source>
    50                     <target>1.7</target>
    51                 </configuration>
    52             </plugin>
    53             <plugin>
    54                 <groupId>org.apache.maven.plugins</groupId>
    55                 <artifactId>maven-surefire-plugin</artifactId>
    56                 <executions>
    57                     <execution>
    58                         <id>brwsr</id>
    59                         <goals>
    60                             <goal>test</goal>
    61                         </goals>
    62                         <phase>verify</phase>
    63                         <configuration>
    64                             <systemProperties>
    65                                 <vmtest.js>brwsr</vmtest.js>
    66                             </systemProperties>
    67                         </configuration>
    68                     </execution>
    69                 </executions>
    70             </plugin>     
    71         </plugins>
    72     </build>
    73 </project>