rt/emul/mini/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 652 emul/mini/pom.xml@f095ea52f417
child 804 7367a296a9ec
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
     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.mini</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Minimal 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>org.apidesign.bck2brwsr</groupId>
    21       <artifactId>core</artifactId>
    22       <version>0.3-SNAPSHOT</version>
    23       <type>jar</type>
    24     </dependency>
    25     <dependency>
    26       <groupId>org.testng</groupId>
    27       <artifactId>testng</artifactId>
    28       <version>6.5.2</version>
    29       <scope>test</scope>
    30     </dependency>
    31   </dependencies>
    32   <build>
    33       <plugins>
    34           <plugin>
    35               <groupId>org.apache.maven.plugins</groupId>
    36               <artifactId>maven-compiler-plugin</artifactId>
    37               <version>2.5.1</version>
    38               <configuration>
    39                   <compilerArguments>
    40                       <bootclasspath>netbeans.ignore.jdk.bootsclasspath</bootclasspath>
    41                   </compilerArguments>
    42                  <source>1.7</source>
    43                  <target>1.7</target>
    44               </configuration>
    45           </plugin>
    46       </plugins>
    47   </build>
    48 </project>