rt/aot-nb-test/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 27 Dec 2014 20:38:32 +0100
changeset 1760 9361d778afe4
parent 1759 e98ac4385490
child 1766 75671373fa87
permissions -rw-r--r--
Skip deployment of these test related modules
     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     </dependencies>
    51     <build>
    52         <plugins>
    53             <plugin>
    54                 <groupId>org.apache.maven.plugins</groupId>
    55                 <artifactId>maven-compiler-plugin</artifactId>
    56                 <version>2.5.1</version>
    57                 <configuration>
    58                     <source>1.7</source>
    59                     <target>1.7</target>
    60                 </configuration>
    61             </plugin>
    62             <plugin>
    63                 <groupId>org.apache.maven.plugins</groupId>
    64                 <artifactId>maven-deploy-plugin</artifactId>
    65                 <version>2.8.2</version>
    66                 <configuration>
    67                     <skip>true</skip>
    68                 </configuration>
    69             </plugin>
    70             <plugin>
    71                 <groupId>org.apache.maven.plugins</groupId>
    72                 <artifactId>maven-surefire-plugin</artifactId>
    73                 <configuration>
    74                     <systemProperties>
    75                         <vmtest.js>brwsr</vmtest.js>
    76                     </systemProperties>
    77                 </configuration>
    78             </plugin>     
    79         </plugins>
    80     </build>
    81 </project>