rt/javap/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 02 Mar 2013 17:02:00 +0100
changeset 806 178754f29511
parent 804 7367a296a9ec
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     1 <?xml version="1.0"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <groupId>org.apidesign.bck2brwsr</groupId>
     6     <artifactId>rt</artifactId>
     7     <version>0.4-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>javap</artifactId>
    11   <version>0.4-SNAPSHOT</version>
    12   <name>ByteCode Parser</name>
    13   <url>http://maven.apache.org</url>
    14   <properties>
    15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16   </properties>
    17   <build>
    18       <plugins>
    19           <plugin>
    20               <groupId>org.apache.maven.plugins</groupId>
    21               <artifactId>maven-compiler-plugin</artifactId>
    22               <version>2.5.1</version>
    23               <configuration>
    24                   <compilerArguments>
    25                       <!--<bootclasspath>non-existing</bootclasspath>-->
    26                   </compilerArguments>
    27                  <source>1.6</source>
    28                  <target>1.6</target>
    29               </configuration>
    30           </plugin>
    31       </plugins>
    32   </build>
    33   <dependencies>
    34     <dependency>
    35       <groupId>org.apidesign.bck2brwsr</groupId>
    36       <artifactId>emul.mini</artifactId>
    37       <version>0.4-SNAPSHOT</version>
    38     </dependency>
    39   </dependencies>
    40 </project>