javap/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 218 bbc04118d571
permissions -rw-r--r--
Rebasing the Inflater support on jzlib which, unlike GNU ClassPath, has correct implementation of Huffman code. Making the implementation more easily testable by turning Inflater and ZipInputStream into pure delegates. Current implementation is going to need proper long support.
jtulach@144
     1
<?xml version="1.0"?>
jtulach@144
     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"
jtulach@144
     3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
jtulach@144
     4
  <modelVersion>4.0.0</modelVersion>
jtulach@144
     5
  <parent>
jtulach@144
     6
    <groupId>org.apidesign</groupId>
jtulach@144
     7
    <artifactId>bck2brwsr</artifactId>
jtulach@218
     8
    <version>0.3-SNAPSHOT</version>
jtulach@144
     9
  </parent>
jtulach@144
    10
  <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@144
    11
  <artifactId>javap</artifactId>
jtulach@218
    12
  <version>0.3-SNAPSHOT</version>
jtulach@144
    13
  <name>javap</name>
jtulach@144
    14
  <url>http://maven.apache.org</url>
jtulach@144
    15
  <properties>
jtulach@144
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@144
    17
  </properties>
jtulach@144
    18
  <build>
jtulach@144
    19
      <plugins>
jtulach@144
    20
          <plugin>
jtulach@144
    21
              <groupId>org.apache.maven.plugins</groupId>
jtulach@144
    22
              <artifactId>maven-compiler-plugin</artifactId>
jtulach@144
    23
              <version>2.5.1</version>
jtulach@144
    24
              <configuration>
jtulach@144
    25
                  <compilerArguments>
jaroslav@152
    26
                      <!--<bootclasspath>non-existing</bootclasspath>-->
jtulach@144
    27
                  </compilerArguments>
jaroslav@151
    28
                 <source>1.6</source>
jaroslav@151
    29
                 <target>1.6</target>
jtulach@144
    30
              </configuration>
jtulach@144
    31
          </plugin>
jtulach@144
    32
      </plugins>
jtulach@144
    33
  </build>
jtulach@144
    34
  <dependencies>
jtulach@144
    35
    <dependency>
jtulach@144
    36
      <groupId>org.apidesign.bck2brwsr</groupId>
jaroslav@554
    37
      <artifactId>emul.mini</artifactId>
jtulach@218
    38
      <version>0.3-SNAPSHOT</version>
jtulach@144
    39
    </dependency>
jtulach@144
    40
  </dependencies>
jtulach@144
    41
</project>