rt/aot-nb-test/pom.xml
changeset 1728 1d850aa501bb
child 1745 40d676c86a87
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/aot-nb-test/pom.xml	Sun Nov 23 21:59:21 2014 +0100
     1.3 @@ -0,0 +1,66 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.apidesign.bck2brwsr</groupId>
     1.9 +        <artifactId>rt</artifactId>
    1.10 +        <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>aot-nb-test</artifactId>
    1.13 +    <name>Ahead of Time + NetBeans Tags Test</name>
    1.14 +    <packaging>jar</packaging>
    1.15 +    <dependencies>
    1.16 +        <dependency>
    1.17 +            <groupId>org.netbeans.api</groupId>
    1.18 +            <artifactId>org-netbeans-libs-javacapi</artifactId>
    1.19 +        </dependency>
    1.20 +        <dependency>
    1.21 +            <groupId>org.netbeans.modules</groupId>
    1.22 +            <artifactId>org-netbeans-libs-javacimpl</artifactId>
    1.23 +        </dependency>
    1.24 +        <dependency>
    1.25 +            <groupId>org.testng</groupId>
    1.26 +            <artifactId>testng</artifactId>
    1.27 +            <scope>test</scope>
    1.28 +        </dependency>
    1.29 +        <dependency>
    1.30 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.31 +            <artifactId>vmtest</artifactId>
    1.32 +            <version>${project.version}</version>
    1.33 +            <scope>test</scope>
    1.34 +            <type>jar</type>
    1.35 +        </dependency>
    1.36 +        <dependency>
    1.37 +            <groupId>${project.groupId}</groupId>
    1.38 +            <artifactId>launcher.http</artifactId>
    1.39 +            <version>${project.version}</version>
    1.40 +            <scope>test</scope>
    1.41 +        </dependency>
    1.42 +        <dependency>
    1.43 +            <groupId>org.netbeans.api</groupId>
    1.44 +            <artifactId>org-openide-util-lookup</artifactId>
    1.45 +        </dependency>
    1.46 +    </dependencies>
    1.47 +    <build>
    1.48 +        <plugins>
    1.49 +            <plugin>
    1.50 +                <groupId>org.apache.maven.plugins</groupId>
    1.51 +                <artifactId>maven-compiler-plugin</artifactId>
    1.52 +                <version>2.5.1</version>
    1.53 +                <configuration>
    1.54 +                    <source>1.7</source>
    1.55 +                    <target>1.7</target>
    1.56 +                </configuration>
    1.57 +            </plugin>
    1.58 +            <plugin>
    1.59 +                <groupId>org.apache.maven.plugins</groupId>
    1.60 +                <artifactId>maven-surefire-plugin</artifactId>
    1.61 +                <configuration>
    1.62 +                    <systemProperties>
    1.63 +                        <vmtest.js>brwsr</vmtest.js>
    1.64 +                    </systemProperties>
    1.65 +                </configuration>
    1.66 +            </plugin>     
    1.67 +        </plugins>
    1.68 +    </build>
    1.69 +</project>
    1.70 \ No newline at end of file