rt/emul/zip/pom.xml
branchclosure
changeset 1549 3f4c143ff8f0
child 1551 0002739b6d1f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/emul/zip/pom.xml	Wed May 07 16:47:24 2014 +0200
     1.3 @@ -0,0 +1,51 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.apidesign.bck2brwsr</groupId>
     1.9 +        <artifactId>emul.pom</artifactId>
    1.10 +        <version>0.9-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>emul.zip</artifactId>
    1.13 +    <name>Unzip by JCraft for Bck2Brwsr</name>
    1.14 +    <description>>
    1.15 +        100% pure Java re-implementation of Zlib
    1.16 +        that allows usage of JAR files with Bck2Brwsr 
    1.17 +        virtual machine.
    1.18 +    </description>
    1.19 +    <packaging>jar</packaging>
    1.20 +    <dependencies>
    1.21 +        <dependency>
    1.22 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.23 +            <artifactId>core</artifactId>
    1.24 +            <version>${project.version}</version>
    1.25 +            <type>jar</type>
    1.26 +        </dependency>
    1.27 +        <dependency>
    1.28 +            <groupId>org.testng</groupId>
    1.29 +            <artifactId>testng</artifactId>
    1.30 +            <scope>test</scope>
    1.31 +        </dependency>
    1.32 +        <dependency>
    1.33 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.34 +            <artifactId>emul.mini</artifactId>
    1.35 +            <version>${project.version}</version>
    1.36 +            <scope>compile</scope>
    1.37 +            <type>jar</type>
    1.38 +        </dependency>
    1.39 +        <dependency>
    1.40 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.41 +            <artifactId>vmtest</artifactId>
    1.42 +            <version>${project.version}</version>
    1.43 +            <scope>test</scope>
    1.44 +            <type>jar</type>
    1.45 +        </dependency>
    1.46 +        <dependency>
    1.47 +            <groupId>org.apidesign.bck2brwsr</groupId>
    1.48 +            <artifactId>launcher.http</artifactId>
    1.49 +            <version>${project.version}</version>
    1.50 +            <scope>test</scope>
    1.51 +            <type>jar</type>
    1.52 +        </dependency>
    1.53 +    </dependencies>
    1.54 +</project>
    1.55 \ No newline at end of file