rt/vm8/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 17 Jan 2017 07:04:06 +0100
changeset 1985 cd1cc103a03c
parent 1733 955520296b08
permissions -rw-r--r--
Implementation of ClassValue for bck2brwsr
     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                     <compilerArguments>
    22                         <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    23                     </compilerArguments>
    24                 </configuration>
    25             </plugin>
    26             <plugin>
    27                 <groupId>org.apache.maven.plugins</groupId>
    28                 <artifactId>maven-surefire-plugin</artifactId>
    29                 <configuration>
    30                     <systemProperties>
    31                         <vmtest.js>brwsr</vmtest.js>
    32                     </systemProperties>
    33                 </configuration>
    34             </plugin>
    35             <plugin>
    36                 <groupId>org.apidesign.bck2brwsr</groupId>
    37                 <artifactId>bck2brwsr-maven-plugin</artifactId>
    38                 <version>${project.version}</version>
    39                 <executions>
    40                     <execution>
    41                         <goals>
    42                             <goal>aot</goal>
    43                         </goals>
    44                         <phase>verify</phase>
    45                     </execution>
    46                 </executions>
    47                 <configuration>
    48                 </configuration>
    49             </plugin>
    50         </plugins>
    51     </build>
    52     <dependencies>
    53         <dependency>
    54             <groupId>org.testng</groupId>
    55             <artifactId>testng</artifactId>
    56             <scope>test</scope>
    57         </dependency>
    58         <dependency>
    59             <groupId>org.apidesign.bck2brwsr</groupId>
    60             <artifactId>vm4brwsr</artifactId>
    61             <version>${project.version}</version>
    62             <scope>test</scope>
    63             <type>jar</type>
    64         </dependency>
    65         <dependency>
    66             <groupId>org.ow2.asm</groupId>
    67             <artifactId>asm-debug-all</artifactId>
    68             <version>4.1</version>
    69             <scope>test</scope>
    70             <type>jar</type>
    71         </dependency>
    72         <dependency>
    73             <groupId>${project.groupId}</groupId>
    74             <artifactId>emul</artifactId>
    75             <version>${project.version}</version>
    76             <scope>compile</scope>
    77             <classifier>rt</classifier>
    78         </dependency>
    79         <dependency>
    80             <groupId>${project.groupId}</groupId>
    81             <artifactId>emul</artifactId>
    82             <version>${project.version}</version>
    83             <scope>provided</scope>
    84             <classifier>bck2brwsr</classifier>
    85         </dependency>
    86         <dependency>
    87             <groupId>org.apidesign.bck2brwsr</groupId>
    88             <artifactId>vmtest</artifactId>
    89             <version>${project.version}</version>
    90             <scope>test</scope>
    91             <type>jar</type>
    92         </dependency>
    93         <dependency>
    94             <groupId>${project.groupId}</groupId>
    95             <artifactId>launcher.http</artifactId>
    96             <version>${project.version}</version>
    97             <scope>test</scope>
    98             <exclusions>
    99                 <exclusion>
   100                     <groupId>com.oracle</groupId>
   101                     <artifactId>javafx</artifactId>
   102                 </exclusion>
   103             </exclusions>
   104         </dependency>
   105         <dependency>
   106             <groupId>org.apidesign.bck2brwsr</groupId>
   107             <artifactId>core</artifactId>
   108             <version>${project.version}</version>
   109             <type>jar</type>
   110             <scope>provided</scope>
   111         </dependency>
   112     </dependencies>
   113 </project>