rt/emul/compact/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 27 Jan 2016 23:33:22 +0100
changeset 1874 0ba84325bac7
parent 1849 bc07f6a1e639
child 1876 785891e2e2c6
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.17
     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.17</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>emul</artifactId>
    11   <version>0.17</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>org.apidesign.bck2brwsr</groupId>
    26       <artifactId>core</artifactId>
    27       <version>${project.version}</version>
    28       <type>jar</type>
    29       <scope>provided</scope>
    30     </dependency>
    31   </dependencies>
    32   <build>
    33       <plugins>
    34           <plugin>
    35               <groupId>org.apache.maven.plugins</groupId>
    36               <artifactId>maven-compiler-plugin</artifactId>
    37               <version>2.5.1</version>
    38               <configuration>
    39                   <compilerArguments>
    40                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    41                   </compilerArguments>
    42                  <source>1.7</source>
    43                  <target>1.7</target>
    44               </configuration>
    45           </plugin>
    46           <plugin>
    47               <groupId>org.apache.maven.plugins</groupId>
    48               <artifactId>maven-javadoc-plugin</artifactId>
    49               <configuration>
    50                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    51                   <skip>false</skip>
    52                   <includeDependencySources>true</includeDependencySources>
    53               </configuration>
    54           </plugin>
    55          <plugin>
    56             <artifactId>maven-assembly-plugin</artifactId>
    57                 <version>2.4</version>
    58                 <executions>
    59                     <execution>
    60                         <id>rt</id>
    61                         <phase>package</phase>
    62                         <goals>
    63                             <goal>single</goal>
    64                         </goals>
    65                         <configuration>
    66                             <descriptors>
    67                                 <descriptor>src/main/assembly/rt.xml</descriptor>
    68                             </descriptors>
    69                             <finalName>${project.build.finalName}</finalName>
    70                         </configuration>
    71                     </execution>
    72                 </executions>                
    73             </plugin> 
    74             <plugin>
    75                 <groupId>org.apidesign.bck2brwsr</groupId>
    76                 <artifactId>bck2brwsr-maven-plugin</artifactId>
    77                 <version>${project.version}</version>
    78                 <executions>
    79                     <execution>
    80                         <goals>
    81                             <goal>library</goal>
    82                         </goals>
    83                     </execution>
    84                 </executions>
    85                 <configuration>
    86                     <mainJar>${project.build.directory}/${project.build.finalName}-rt.jar</mainJar>
    87                 </configuration>
    88             </plugin>
    89       </plugins>
    90   </build>
    91 </project>