rt/aot-nb-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 29 Apr 2016 08:32:49 +0200
branchrelease-0.19
changeset 1961 e9e1b1e863ba
parent 1913 37194f101d35
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.19
     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>0.19</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>com.dukescript.api</groupId>
    52             <artifactId>junit-osgi</artifactId>
    53             <version>4.12</version>
    54             <type>jar</type>
    55         </dependency>
    56     </dependencies>
    57     <build>
    58         <plugins>
    59             <plugin>
    60                 <groupId>org.apache.maven.plugins</groupId>
    61                 <artifactId>maven-compiler-plugin</artifactId>
    62                 <version>2.5.1</version>
    63                 <configuration>
    64                     <source>1.7</source>
    65                     <target>1.7</target>
    66                 </configuration>
    67             </plugin>
    68             <plugin>
    69                 <groupId>org.apache.maven.plugins</groupId>
    70                 <artifactId>maven-deploy-plugin</artifactId>
    71                 <version>2.8.2</version>
    72                 <configuration>
    73                     <skip>true</skip>
    74                 </configuration>
    75             </plugin>
    76             <plugin>
    77                 <groupId>org.apache.maven.plugins</groupId>
    78                 <artifactId>maven-surefire-plugin</artifactId>
    79                 <configuration>
    80                     <systemProperties>
    81                         <vmtest.js>brwsr</vmtest.js>
    82                     </systemProperties>
    83                 </configuration>
    84             </plugin>     
    85         </plugins>
    86     </build>
    87 </project>