rt/emul/zip/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 07 May 2014 16:47:24 +0200
branchclosure
changeset 1549 3f4c143ff8f0
child 1551 0002739b6d1f
permissions -rw-r--r--
Separating the unzipping functionality into own module. Step one.
     1 <?xml version="1.0" encoding="UTF-8"?>
     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>emul.pom</artifactId>
     7         <version>0.9-SNAPSHOT</version>
     8     </parent>
     9     <artifactId>emul.zip</artifactId>
    10     <name>Unzip by JCraft for Bck2Brwsr</name>
    11     <description>>
    12         100% pure Java re-implementation of Zlib
    13         that allows usage of JAR files with Bck2Brwsr 
    14         virtual machine.
    15     </description>
    16     <packaging>jar</packaging>
    17     <dependencies>
    18         <dependency>
    19             <groupId>org.apidesign.bck2brwsr</groupId>
    20             <artifactId>core</artifactId>
    21             <version>${project.version}</version>
    22             <type>jar</type>
    23         </dependency>
    24         <dependency>
    25             <groupId>org.testng</groupId>
    26             <artifactId>testng</artifactId>
    27             <scope>test</scope>
    28         </dependency>
    29         <dependency>
    30             <groupId>org.apidesign.bck2brwsr</groupId>
    31             <artifactId>emul.mini</artifactId>
    32             <version>${project.version}</version>
    33             <scope>compile</scope>
    34             <type>jar</type>
    35         </dependency>
    36         <dependency>
    37             <groupId>org.apidesign.bck2brwsr</groupId>
    38             <artifactId>vmtest</artifactId>
    39             <version>${project.version}</version>
    40             <scope>test</scope>
    41             <type>jar</type>
    42         </dependency>
    43         <dependency>
    44             <groupId>org.apidesign.bck2brwsr</groupId>
    45             <artifactId>launcher.http</artifactId>
    46             <version>${project.version}</version>
    47             <scope>test</scope>
    48             <type>jar</type>
    49         </dependency>
    50     </dependencies>
    51 </project>