rt/vm8/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 10 Aug 2014 08:07:11 +0200
branchjdk8
changeset 1656 589affbf39a2
parent 1654 da24a2411ee7
child 1672 1efb2645c7aa
permissions -rw-r--r--
The test fails on invokeDynamic instruction in JavaScript execution
     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>vm8</artifactId>
    10     <name>Bck2Brwsr on JDK8</name>
    11     <packaging>jar</packaging>
    12     <build>
    13         <plugins>
    14             <plugin>
    15                 <groupId>org.apache.maven.plugins</groupId>
    16                 <artifactId>maven-compiler-plugin</artifactId>
    17                 <version>2.3.2</version>
    18                 <configuration>
    19                     <source>1.8</source>
    20                     <target>1.8</target>
    21                 </configuration>
    22             </plugin>
    23         </plugins>
    24     </build>
    25     <dependencies>
    26         <dependency>
    27             <groupId>org.testng</groupId>
    28             <artifactId>testng</artifactId>
    29             <scope>test</scope>
    30         </dependency>
    31         <dependency>
    32             <groupId>org.apidesign.bck2brwsr</groupId>
    33             <artifactId>vm4brwsr</artifactId>
    34             <version>${project.version}</version>
    35             <scope>test</scope>
    36             <type>jar</type>
    37         </dependency>
    38         <dependency>
    39             <groupId>org.ow2.asm</groupId>
    40             <artifactId>asm-debug-all</artifactId>
    41             <version>4.1</version>
    42             <scope>test</scope>
    43             <type>jar</type>
    44         </dependency>
    45         <dependency>
    46             <groupId>${project.groupId}</groupId>
    47             <artifactId>emul</artifactId>
    48             <version>${project.version}</version>
    49             <scope>test</scope>
    50         </dependency>
    51     </dependencies>
    52 </project>