javap/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 29 Nov 2012 00:02:37 +0100
changeset 218 bbc04118d571
parent 152 2cda429aeb49
child 554 05224402145d
permissions -rw-r--r--
Changing the release of all components to 0.3
     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>javap</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>javap</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <build>
    19       <plugins>
    20           <plugin>
    21               <groupId>org.apache.maven.plugins</groupId>
    22               <artifactId>maven-compiler-plugin</artifactId>
    23               <version>2.5.1</version>
    24               <configuration>
    25                   <compilerArguments>
    26                       <!--<bootclasspath>non-existing</bootclasspath>-->
    27                   </compilerArguments>
    28                  <source>1.6</source>
    29                  <target>1.6</target>
    30               </configuration>
    31           </plugin>
    32       </plugins>
    33   </build>
    34   <dependencies>
    35     <dependency>
    36       <groupId>org.apidesign.bck2brwsr</groupId>
    37       <artifactId>emul</artifactId>
    38       <version>0.3-SNAPSHOT</version>
    39     </dependency>
    40   </dependencies>
    41 </project>