rt/emul/fake/pom.xml
branchclosure
changeset 1595 19d0484c1916
child 1624 3e565843a131
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/emul/fake/pom.xml	Mon May 26 14:33:11 2014 +0200
     1.3 @@ -0,0 +1,28 @@
     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>fake</artifactId>
    1.13 +    <packaging>jar</packaging>
    1.14 +    <name>Fake Stubs of Java APIs</name>
    1.15 +    <description>
    1.16 +        The minimal emulation classes have certain references
    1.17 +        to less essential classes in the JDK. This module provides
    1.18 +        their stubs for purpose of compilation.
    1.19 +    </description> 
    1.20 +    <build>
    1.21 +        <plugins>
    1.22 +            <plugin>
    1.23 +                <artifactId>maven-deploy-plugin</artifactId>
    1.24 +                <version>2.7</version>
    1.25 +                <configuration>
    1.26 +                    <skip>true</skip>
    1.27 +                </configuration>
    1.28 +            </plugin>
    1.29 +        </plugins>
    1.30 +    </build>
    1.31 +</project>