core/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 432 1bdeeb77f5a3
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.
     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>core</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Core JS Annotations</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.3.2</version>
    21                 <configuration>
    22                     <source>1.7</source>
    23                     <target>1.7</target>
    24                 </configuration>
    25             </plugin>
    26         </plugins>
    27     </build>
    28     <properties>
    29     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    30   </properties>
    31   <dependencies>
    32     <dependency>
    33       <groupId>junit</groupId>
    34       <artifactId>junit</artifactId>
    35       <version>3.8.1</version>
    36       <scope>test</scope>
    37     </dependency>
    38     <dependency>
    39       <groupId>org.netbeans.api</groupId>
    40       <artifactId>org-openide-util-lookup</artifactId>
    41       <scope>provided</scope>
    42     </dependency>
    43   </dependencies>
    44     <description>Contains esential annotations for associating JavaScript code with
    45 methods and classes.</description>
    46 </project>