rt/emul/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 05 Mar 2013 22:30:15 +0100
changeset 815 7b510a425296
parent 806 178754f29511
child 816 8f5ba6e4efa6
permissions -rw-r--r--
Generating the javadoc for the compact profile, as well as emul parent project. The parent Javadoc is more suitable for being shown to people.
     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>rt</artifactId>
     7     <version>0.4-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>emul.pom</artifactId>
    11   <version>0.4-SNAPSHOT</version>
    12   <packaging>pom</packaging>
    13   <name>Emulation of Core Libraries</name>
    14   <modules>
    15     <module>mini</module>
    16     <module>compact</module>
    17   </modules>
    18   <build>
    19       <plugins>
    20           <plugin>
    21               <groupId>org.apache.maven.plugins</groupId>
    22               <artifactId>maven-javadoc-plugin</artifactId>
    23               <configuration>
    24                   <aggregate>true</aggregate>
    25                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    26                   <skip>false</skip>
    27               </configuration>
    28           </plugin>
    29       </plugins>
    30   </build>
    31 </project>