emul/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 28 Sep 2013 02:02:00 +0200
branchjdk7-b147
changeset 1314 e3db9cca817b
child 58 2ca1bb929895
permissions -rw-r--r--
Adding StringWriter and reader as it is used in Javac
     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>1.0-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>emul</artifactId>
    12   <version>1.0-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>junit</groupId>
    21       <artifactId>junit</artifactId>
    22       <version>3.8.1</version>
    23       <scope>test</scope>
    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               </configuration>
    37           </plugin>
    38       </plugins>
    39   </build>
    40 </project>