rt/emul/zip/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 26 Sep 2014 16:27:57 +0200
changeset 1713 d21947a8b9b9
parent 1700 cca9dc1fdefb
child 1715 dcd26599413f
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.11
     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.11</version>
     8     </parent>
     9     <artifactId>emul.zip</artifactId>
    10     <name>Unzip by JCraft for Bck2Brwsr</name>
    11     <description>&gt;
    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     <build>
    18         <plugins>
    19             <plugin>
    20                 <groupId>org.apache.maven.plugins</groupId>
    21                 <artifactId>maven-surefire-plugin</artifactId>
    22                 <configuration>
    23                     <systemProperties>
    24                         <vmtest.js>brwsr</vmtest.js>
    25                     </systemProperties>
    26                 </configuration>
    27             </plugin>     
    28             <plugin>
    29                <groupId>org.apache.maven.plugins</groupId>
    30                <artifactId>maven-javadoc-plugin</artifactId>
    31                <configuration>
    32                  <skip>false</skip>
    33                  <subpackages>java.util.zip</subpackages>
    34                </configuration>
    35              </plugin>
    36         </plugins>
    37     </build>
    38     <dependencies>
    39         <dependency>
    40             <groupId>org.apidesign.bck2brwsr</groupId>
    41             <artifactId>core</artifactId>
    42             <version>${project.version}</version>
    43             <type>jar</type>
    44         </dependency>
    45         <dependency>
    46             <groupId>org.testng</groupId>
    47             <artifactId>testng</artifactId>
    48             <scope>test</scope>
    49         </dependency>
    50         <dependency>
    51             <groupId>org.apidesign.bck2brwsr</groupId>
    52             <artifactId>emul.mini</artifactId>
    53             <version>${project.version}</version>
    54             <scope>compile</scope>
    55             <type>jar</type>
    56         </dependency>
    57         <dependency>
    58             <groupId>org.apidesign.bck2brwsr</groupId>
    59             <artifactId>vmtest</artifactId>
    60             <version>${project.version}</version>
    61             <scope>test</scope>
    62             <type>jar</type>
    63         </dependency>
    64         <dependency>
    65             <groupId>org.apidesign.bck2brwsr</groupId>
    66             <artifactId>launcher.http</artifactId>
    67             <version>${project.version}</version>
    68             <scope>test</scope>
    69             <type>jar</type>
    70         </dependency>
    71         <dependency>
    72             <groupId>org.apidesign.bck2brwsr</groupId>
    73             <artifactId>vm4brwsr</artifactId>
    74             <version>${project.version}</version>
    75             <type>jar</type>
    76         </dependency>
    77     </dependencies>
    78 </project>