rt/emul/compacttest/pom.xml
changeset 1723 3a1f262311cf
parent 1715 dcd26599413f
child 1745 40d676c86a87
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/emul/compacttest/pom.xml	Wed Nov 19 19:32:00 2014 +0100
     1.3 @@ -0,0 +1,73 @@
     1.4 +<?xml version="1.0"?>
     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>emul.pom</artifactId>
    1.10 +        <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <groupId>org.apidesign.bck2brwsr</groupId>
    1.13 +    <artifactId>compacttest</artifactId>
    1.14 +    <version>1.0-SNAPSHOT</version>
    1.15 +    <name>Bck2Brwsr API Profile Tests</name>
    1.16 +    <url>http://maven.apache.org</url>
    1.17 +    <properties>
    1.18 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.19 +    </properties>
    1.20 +    <dependencies>
    1.21 +        <dependency>
    1.22 +            <groupId>${project.groupId}</groupId>
    1.23 +            <artifactId>vmtest</artifactId>
    1.24 +            <version>${project.version}</version>
    1.25 +            <scope>test</scope>
    1.26 +        </dependency>
    1.27 +        <dependency>
    1.28 +            <groupId>${project.groupId}</groupId>
    1.29 +            <artifactId>launcher.http</artifactId>
    1.30 +            <version>${project.version}</version>
    1.31 +            <scope>test</scope>
    1.32 +            <exclusions>
    1.33 +                <exclusion>
    1.34 +                    <groupId>com.oracle</groupId>
    1.35 +                    <artifactId>javafx</artifactId>
    1.36 +                </exclusion>
    1.37 +            </exclusions>
    1.38 +        </dependency>
    1.39 +        <dependency>
    1.40 +            <groupId>org.netbeans.api</groupId>
    1.41 +            <artifactId>org-openide-util-lookup</artifactId>
    1.42 +            <scope>test</scope>
    1.43 +        </dependency>
    1.44 +    </dependencies>
    1.45 +    <build>
    1.46 +        <plugins>
    1.47 +            <plugin>
    1.48 +                <groupId>org.apache.maven.plugins</groupId>
    1.49 +                <artifactId>maven-compiler-plugin</artifactId>
    1.50 +                <version>2.5.1</version>
    1.51 +                <configuration>
    1.52 +                    <source>1.7</source>
    1.53 +                    <target>1.7</target>
    1.54 +                </configuration>
    1.55 +            </plugin>
    1.56 +            <plugin>
    1.57 +                <groupId>org.apache.maven.plugins</groupId>
    1.58 +                <artifactId>maven-surefire-plugin</artifactId>
    1.59 +                <executions>
    1.60 +                    <execution>
    1.61 +                        <id>brwsr</id>
    1.62 +                        <goals>
    1.63 +                            <goal>test</goal>
    1.64 +                        </goals>
    1.65 +                        <phase>verify</phase>
    1.66 +                        <configuration>
    1.67 +                            <systemProperties>
    1.68 +                                <vmtest.js>brwsr</vmtest.js>
    1.69 +                            </systemProperties>
    1.70 +                        </configuration>
    1.71 +                    </execution>
    1.72 +                </executions>
    1.73 +            </plugin>     
    1.74 +        </plugins>
    1.75 +    </build>
    1.76 +</project>