rt/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 17 May 2015 14:28:16 +0200
changeset 1831 756236350081
parent 1804 41f9eb4d6c25
child 1833 8ece64bedc99
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.15
     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   <groupId>org.apidesign.bck2brwsr</groupId>
     5   <artifactId>rt</artifactId>
     6   <version>0.15</version>
     7   <packaging>pom</packaging>
     8   <name>Bck2Brwsr Runtime</name>
     9   <parent>
    10     <groupId>org.apidesign</groupId>
    11     <artifactId>bck2brwsr</artifactId>
    12     <version>0.15</version>
    13   </parent>  
    14   <modules>
    15     <module>core</module>
    16     <module>emul</module>
    17     <module>mojo</module>
    18     <module>vm</module>
    19     <module>vmtest</module>
    20     <module>aot</module>
    21     <module>aot-nb-test</module>
    22   </modules>
    23   <profiles>
    24       <profile>
    25           <activation>
    26               <jdk>1.8</jdk>
    27           </activation>
    28           <modules>
    29               <module>vm8</module>
    30           </modules>
    31       </profile>
    32   </profiles>
    33 </project>