emul/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 29 Sep 2012 07:49:34 +0200
branchemul
changeset 58 2ca1bb929895
parent 49 0a115f1c6f3c
child 93 a236a9f137ac
permissions -rw-r--r--
Less dependencies on other packages
     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                  <source>1.7</source>
    37                  <target>1.7</target>
    38               </configuration>
    39           </plugin>
    40       </plugins>
    41   </build>
    42 </project>