rt/emul/mini/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 05 Mar 2013 23:09:28 +0100
changeset 816 8f5ba6e4efa6
parent 814 0099855f7ee8
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.mini</artifactId>
    11   <version>0.4-SNAPSHOT</version>
    12   <name>Minimal 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>org.apidesign.bck2brwsr</groupId>
    20       <artifactId>core</artifactId>
    21       <version>0.4-SNAPSHOT</version>
    22       <type>jar</type>
    23     </dependency>
    24     <dependency>
    25       <groupId>org.testng</groupId>
    26       <artifactId>testng</artifactId>
    27       <version>6.5.2</version>
    28       <scope>test</scope>
    29     </dependency>
    30   </dependencies>
    31   <build>
    32       <plugins>
    33           <plugin>
    34               <groupId>org.apache.maven.plugins</groupId>
    35               <artifactId>maven-compiler-plugin</artifactId>
    36               <version>2.5.1</version>
    37               <configuration>
    38                   <compilerArguments>
    39                       <bootclasspath>netbeans.ignore.jdk.bootsclasspath</bootclasspath>
    40                   </compilerArguments>
    41                  <source>1.7</source>
    42                  <target>1.7</target>
    43               </configuration>
    44           </plugin>
    45           <plugin>
    46               <groupId>org.apache.maven.plugins</groupId>
    47               <artifactId>maven-javadoc-plugin</artifactId>
    48               <configuration>
    49                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    50                   <skip>false</skip>
    51               </configuration>
    52           </plugin>
    53           <plugin>
    54               <groupId>org.apache.maven.plugins</groupId>
    55               <artifactId>maven-source-plugin</artifactId>
    56               <version>2.2.1</version>
    57               <executions>
    58                   <execution>
    59                       <id>prepare-sources</id>
    60                       <goals>
    61                           <goal>jar</goal>
    62                       </goals>
    63                       <phase>package</phase>
    64                   </execution>
    65               </executions>
    66           </plugin>
    67       </plugins>
    68   </build>
    69 </project>