rt/emul/compact/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Nov 2014 19:32:00 +0100
changeset 1723 3a1f262311cf
parent 1715 dcd26599413f
child 1733 955520296b08
permissions -rw-r--r--
Separating compact profile tests into own project, so launcher.http can depend on compact profile JAR
     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>1.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>emul</artifactId>
    11   <version>1.0-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   </dependencies>
    25   <build>
    26       <plugins>
    27           <plugin>
    28               <groupId>org.apache.maven.plugins</groupId>
    29               <artifactId>maven-compiler-plugin</artifactId>
    30               <version>2.5.1</version>
    31               <configuration>
    32                   <compilerArguments>
    33                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    34                   </compilerArguments>
    35                  <source>1.7</source>
    36                  <target>1.7</target>
    37               </configuration>
    38           </plugin>
    39           <plugin>
    40               <groupId>org.apache.maven.plugins</groupId>
    41               <artifactId>maven-javadoc-plugin</artifactId>
    42               <configuration>
    43                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    44                   <skip>false</skip>
    45                   <includeDependencySources>true</includeDependencySources>
    46               </configuration>
    47           </plugin>
    48          <plugin>
    49             <artifactId>maven-assembly-plugin</artifactId>
    50                 <version>2.4</version>
    51                 <executions>
    52                     <execution>
    53                         <id>rt</id>
    54                         <phase>package</phase>
    55                         <goals>
    56                             <goal>single</goal>
    57                         </goals>
    58                         <configuration>
    59                             <descriptors>
    60                                 <descriptor>src/main/assembly/rt.xml</descriptor>
    61                             </descriptors>
    62                             <finalName>bck2brwsr-${project.version}</finalName>
    63                         </configuration>
    64                     </execution>
    65                 </executions>                
    66             </plugin> 
    67       </plugins>
    68   </build>
    69 </project>