emul/pom.xml
author Martin Soch <Martin.Soch@oracle.com>
Wed, 12 Dec 2012 12:41:06 +0100
branchbenchmarks
changeset 309 825e468aa4a7
parent 112 30eaae00f967
child 554 05224402145d
permissions -rw-r--r--
merge with trunk
     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</groupId>
     7     <artifactId>bck2brwsr</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>Java API Emulation</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>org.apidesign.bck2brwsr</groupId>
    21       <artifactId>core</artifactId>
    22       <version>0.3-SNAPSHOT</version>
    23       <type>jar</type>
    24     </dependency>
    25   </dependencies>
    26   <build>
    27       <plugins>
    28           <plugin>
    29               <groupId>org.apache.maven.plugins</groupId>
    30               <artifactId>maven-compiler-plugin</artifactId>
    31               <version>2.5.1</version>
    32               <configuration>
    33                   <compilerArguments>
    34                       <bootclasspath>non-existing</bootclasspath>
    35                   </compilerArguments>
    36                  <source>1.7</source>
    37                  <target>1.7</target>
    38               </configuration>
    39           </plugin>
    40       </plugins>
    41   </build>
    42 </project>