rt/emul/compact/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 05 Mar 2013 23:09:28 +0100
changeset 816 8f5ba6e4efa6
parent 815 7b510a425296
child 819 caf1e66268fd
permissions -rw-r--r--
Generating the whole emulation Javadoc in rt/emul/compact by using includeDependencySources
     1 <?xml version="1.0"?>
     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.4-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>emul</artifactId>
    11   <version>0.4-SNAPSHOT</version>
    12   <name>Bck2Brwsr API Profile</name>
    13   <url>http://maven.apache.org</url>
    14   <properties>
    15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16   </properties>
    17   <dependencies>
    18     <dependency>
    19       <groupId>${project.groupId}</groupId>
    20       <artifactId>emul.mini</artifactId>
    21       <version>${project.version}</version>
    22       <scope>provided</scope>
    23     </dependency>
    24     <dependency>
    25       <groupId>${project.groupId}</groupId>
    26       <artifactId>vmtest</artifactId>
    27       <version>${project.version}</version>
    28       <scope>test</scope>
    29     </dependency>
    30     <dependency>
    31       <groupId>org.netbeans.api</groupId>
    32       <artifactId>org-openide-util-lookup</artifactId>
    33       <scope>test</scope>
    34     </dependency>
    35   </dependencies>
    36   <build>
    37       <plugins>
    38           <plugin>
    39               <groupId>org.apache.maven.plugins</groupId>
    40               <artifactId>maven-compiler-plugin</artifactId>
    41               <version>2.5.1</version>
    42               <configuration>
    43                   <compilerArguments>
    44                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    45                   </compilerArguments>
    46                  <source>1.7</source>
    47                  <target>1.7</target>
    48               </configuration>
    49           </plugin>
    50           <plugin>
    51               <groupId>org.apache.maven.plugins</groupId>
    52               <artifactId>maven-javadoc-plugin</artifactId>
    53               <configuration>
    54                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    55                   <skip>false</skip>
    56                   <includeDependencySources>true</includeDependencySources>
    57               </configuration>
    58           </plugin>
    59          <plugin>
    60             <artifactId>maven-assembly-plugin</artifactId>
    61                 <version>2.4</version>
    62                 <executions>
    63                     <execution>
    64                         <id>rt</id>
    65                         <phase>package</phase>
    66                         <goals>
    67                             <goal>single</goal>
    68                         </goals>
    69                         <configuration>
    70                             <descriptors>
    71                                 <descriptor>src/main/assembly/rt.xml</descriptor>
    72                             </descriptors>
    73                             <finalName>bck2brwsr-${project.version}</finalName>
    74                         </configuration>
    75                     </execution>
    76                 </executions>                
    77             </plugin>      
    78       </plugins>
    79   </build>
    80 </project>