emul/compact/pom.xml
author Lubomir Nerad <lubomir.nerad@oracle.com>
Tue, 05 Feb 2013 16:40:01 +0100
brancharithmetic
changeset 676 eecf6077ec4e
child 621 6daa39b17563
permissions -rw-r--r--
Support for Long division + tests
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign.bck2brwsr</groupId>
     7     <artifactId>emul.pom</artifactId>
     8     <version>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>emul</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Compact API Profile</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <dependencies>
    19     <dependency>
    20       <groupId>${project.groupId}</groupId>
    21       <artifactId>emul.mini</artifactId>
    22       <version>${project.version}</version>
    23     </dependency>
    24     <dependency>
    25       <groupId>${project.groupId}</groupId>
    26       <artifactId>vmtest</artifactId>
    27       <version>${project.version}</version>
    28       <scope>test</scope>
    29     </dependency>
    30   </dependencies>
    31   <build>
    32       <plugins>
    33           <plugin>
    34               <groupId>org.apache.maven.plugins</groupId>
    35               <artifactId>maven-compiler-plugin</artifactId>
    36               <version>2.5.1</version>
    37               <configuration>
    38                   <compilerArguments>
    39                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    40                   </compilerArguments>
    41                  <source>1.7</source>
    42                  <target>1.7</target>
    43               </configuration>
    44           </plugin>
    45       </plugins>
    46   </build>
    47 </project>