rt/aot-nb-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 19 Mar 2016 12:51:03 +0100
changeset 1895 bfaf3300b7ba
parent 1876 785891e2e2c6
child 1897 cb637833bfb3
permissions -rw-r--r--
Making java.util.concurrent package compilable except ForkJoinPool
     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>${project.groupId}</groupId>
    41             <artifactId>emul</artifactId>
    42             <classifier>rt</classifier>
    43             <version>${project.version}</version>
    44             <scope>test</scope>
    45         </dependency>
    46         <dependency>
    47             <groupId>org.netbeans.api</groupId>
    48             <artifactId>org-openide-util-lookup</artifactId>
    49         </dependency>
    50         <dependency>
    51             <groupId>${project.groupId}</groupId>
    52             <artifactId>emul.mini</artifactId>
    53             <version>${project.version}</version>
    54             <scope>test</scope>
    55         </dependency>
    56         <dependency>
    57             <groupId>junit</groupId>
    58             <artifactId>junit</artifactId>
    59             <version>4.12</version>
    60             <type>jar</type>
    61         </dependency>
    62     </dependencies>
    63     <build>
    64         <plugins>
    65             <plugin>
    66                 <groupId>org.apache.maven.plugins</groupId>
    67                 <artifactId>maven-compiler-plugin</artifactId>
    68                 <version>2.5.1</version>
    69                 <configuration>
    70                     <source>1.7</source>
    71                     <target>1.7</target>
    72                 </configuration>
    73             </plugin>
    74             <plugin>
    75                 <groupId>org.apache.maven.plugins</groupId>
    76                 <artifactId>maven-deploy-plugin</artifactId>
    77                 <version>2.8.2</version>
    78                 <configuration>
    79                     <skip>true</skip>
    80                 </configuration>
    81             </plugin>
    82             <plugin>
    83                 <groupId>org.apache.maven.plugins</groupId>
    84                 <artifactId>maven-surefire-plugin</artifactId>
    85                 <configuration>
    86                     <systemProperties>
    87                         <vmtest.js>brwsr</vmtest.js>
    88                     </systemProperties>
    89                 </configuration>
    90             </plugin>     
    91         </plugins>
    92     </build>
    93 </project>