rt/emul/fake/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Sep 2015 07:59:40 +0200
changeset 1847 6e8a8cfcb07f
parent 1833 8ece64bedc99
child 1849 bc07f6a1e639
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.16
     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.16</version>
     8     </parent>
     9     <artifactId>fake</artifactId>
    10     <packaging>jar</packaging>
    11     <name>Fake Stubs of Java APIs</name>
    12     <description>
    13         The minimal emulation classes have certain references
    14         to less essential classes in the JDK. This module provides
    15         their stubs for purpose of compilation.
    16     </description> 
    17     <build>
    18         <plugins>
    19             <plugin>
    20                 <artifactId>maven-deploy-plugin</artifactId>
    21                 <version>2.7</version>
    22                 <configuration>
    23                     <skip>true</skip>
    24                 </configuration>
    25             </plugin>
    26         </plugins>
    27     </build>
    28 </project>