rt/vm8/pom.xml
branchjdk8
changeset 1639 4b09a4b689a4
child 1654 da24a2411ee7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/vm8/pom.xml	Thu Jun 26 23:54:17 2014 +0200
     1.3 @@ -0,0 +1,39 @@
     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>vm8</artifactId>
    1.13 +    <name>Bck2Brwsr on JDK8</name>
    1.14 +    <packaging>jar</packaging>
    1.15 +    <build>
    1.16 +        <plugins>
    1.17 +            <plugin>
    1.18 +                <groupId>org.apache.maven.plugins</groupId>
    1.19 +                <artifactId>maven-compiler-plugin</artifactId>
    1.20 +                <version>2.3.2</version>
    1.21 +                <configuration>
    1.22 +                    <source>1.8</source>
    1.23 +                    <target>1.8</target>
    1.24 +                </configuration>
    1.25 +            </plugin>
    1.26 +        </plugins>
    1.27 +    </build>
    1.28 +    <dependencies>
    1.29 +        <dependency>
    1.30 +            <groupId>org.testng</groupId>
    1.31 +            <artifactId>testng</artifactId>
    1.32 +            <scope>test</scope>
    1.33 +        </dependency>
    1.34 +        <dependency>
    1.35 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.36 +            <artifactId>vm4brwsr</artifactId>
    1.37 +            <version>${project.version}</version>
    1.38 +            <scope>test</scope>
    1.39 +            <type>jar</type>
    1.40 +        </dependency>
    1.41 +    </dependencies>
    1.42 +</project>
    1.43 \ No newline at end of file