rt/aot-nb-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 23 Nov 2014 21:59:21 +0100
changeset 1728 1d850aa501bb
child 1745 40d676c86a87
permissions -rw-r--r--
Recognizes NetBeans manifest tags
     1 <?xml version="1.0" encoding="UTF-8"?>
     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>rt</artifactId>
     7         <version>1.0-SNAPSHOT</version>
     8     </parent>
     9     <artifactId>aot-nb-test</artifactId>
    10     <name>Ahead of Time + NetBeans Tags Test</name>
    11     <packaging>jar</packaging>
    12     <dependencies>
    13         <dependency>
    14             <groupId>org.netbeans.api</groupId>
    15             <artifactId>org-netbeans-libs-javacapi</artifactId>
    16         </dependency>
    17         <dependency>
    18             <groupId>org.netbeans.modules</groupId>
    19             <artifactId>org-netbeans-libs-javacimpl</artifactId>
    20         </dependency>
    21         <dependency>
    22             <groupId>org.testng</groupId>
    23             <artifactId>testng</artifactId>
    24             <scope>test</scope>
    25         </dependency>
    26         <dependency>
    27             <groupId>org.apidesign.bck2brwsr</groupId>
    28             <artifactId>vmtest</artifactId>
    29             <version>${project.version}</version>
    30             <scope>test</scope>
    31             <type>jar</type>
    32         </dependency>
    33         <dependency>
    34             <groupId>${project.groupId}</groupId>
    35             <artifactId>launcher.http</artifactId>
    36             <version>${project.version}</version>
    37             <scope>test</scope>
    38         </dependency>
    39         <dependency>
    40             <groupId>org.netbeans.api</groupId>
    41             <artifactId>org-openide-util-lookup</artifactId>
    42         </dependency>
    43     </dependencies>
    44     <build>
    45         <plugins>
    46             <plugin>
    47                 <groupId>org.apache.maven.plugins</groupId>
    48                 <artifactId>maven-compiler-plugin</artifactId>
    49                 <version>2.5.1</version>
    50                 <configuration>
    51                     <source>1.7</source>
    52                     <target>1.7</target>
    53                 </configuration>
    54             </plugin>
    55             <plugin>
    56                 <groupId>org.apache.maven.plugins</groupId>
    57                 <artifactId>maven-surefire-plugin</artifactId>
    58                 <configuration>
    59                     <systemProperties>
    60                         <vmtest.js>brwsr</vmtest.js>
    61                     </systemProperties>
    62                 </configuration>
    63             </plugin>     
    64         </plugins>
    65     </build>
    66 </project>