rt/vm8/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 13 Sep 2014 14:37:49 +0200
branchjdk8
changeset 1680 3b553acbd931
parent 1674 eca8e9c3ec3e
child 1683 17f95ced156b
permissions -rw-r--r--
Using @Compare tests to make sure the classes are processed by the AOT infrastructure.
     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             <plugin>
    24                 <groupId>net.orfjackal.retrolambda</groupId>
    25                 <artifactId>retrolambda-maven-plugin</artifactId>
    26                 <version>1.5.0</version>
    27                 <executions>
    28                     <execution>
    29                         <goals>
    30                             <goal>process-test</goal>
    31                         </goals>
    32                     </execution>
    33                 </executions>
    34                 <configuration>
    35                     <target>1.8</target>
    36                 </configuration>
    37             </plugin>
    38         </plugins>
    39     </build>
    40     <dependencies>
    41         <dependency>
    42             <groupId>org.testng</groupId>
    43             <artifactId>testng</artifactId>
    44             <scope>test</scope>
    45         </dependency>
    46         <dependency>
    47             <groupId>org.apidesign.bck2brwsr</groupId>
    48             <artifactId>vm4brwsr</artifactId>
    49             <version>${project.version}</version>
    50             <scope>test</scope>
    51             <type>jar</type>
    52         </dependency>
    53         <dependency>
    54             <groupId>org.ow2.asm</groupId>
    55             <artifactId>asm-debug-all</artifactId>
    56             <version>4.1</version>
    57             <scope>test</scope>
    58             <type>jar</type>
    59         </dependency>
    60         <dependency>
    61             <groupId>${project.groupId}</groupId>
    62             <artifactId>emul</artifactId>
    63             <version>${project.version}</version>
    64             <scope>test</scope>
    65         </dependency>
    66         <dependency>
    67             <groupId>org.apidesign.bck2brwsr</groupId>
    68             <artifactId>vmtest</artifactId>
    69             <version>${project.version}</version>
    70             <scope>test</scope>
    71             <type>jar</type>
    72         </dependency>
    73         <dependency>
    74             <groupId>${project.groupId}</groupId>
    75             <artifactId>launcher.http</artifactId>
    76             <version>${project.version}</version>
    77             <scope>test</scope>
    78         </dependency>
    79     </dependencies>
    80 </project>