rt/emul/compact/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 30 Apr 2013 15:16:08 +0200
changeset 1062 692fc4c1990d
parent 1060 e3845e4f0ec8
child 1099 dcc7ab0f2692
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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.8-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>emul</artifactId>
    11   <version>0.8-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>${project.groupId}</groupId>
    32       <artifactId>launcher.http</artifactId>
    33       <version>${project.version}</version>
    34       <scope>test</scope>
    35     </dependency>
    36     <dependency>
    37       <groupId>org.netbeans.api</groupId>
    38       <artifactId>org-openide-util-lookup</artifactId>
    39       <scope>test</scope>
    40     </dependency>
    41   </dependencies>
    42   <build>
    43       <plugins>
    44           <plugin>
    45               <groupId>org.apache.maven.plugins</groupId>
    46               <artifactId>maven-compiler-plugin</artifactId>
    47               <version>2.5.1</version>
    48               <configuration>
    49                   <compilerArguments>
    50                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    51                   </compilerArguments>
    52                  <source>1.7</source>
    53                  <target>1.7</target>
    54               </configuration>
    55           </plugin>
    56           <plugin>
    57               <groupId>org.apache.maven.plugins</groupId>
    58               <artifactId>maven-javadoc-plugin</artifactId>
    59               <configuration>
    60                   <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames>
    61                   <skip>false</skip>
    62                   <includeDependencySources>true</includeDependencySources>
    63               </configuration>
    64           </plugin>
    65          <plugin>
    66             <artifactId>maven-assembly-plugin</artifactId>
    67                 <version>2.4</version>
    68                 <executions>
    69                     <execution>
    70                         <id>rt</id>
    71                         <phase>package</phase>
    72                         <goals>
    73                             <goal>single</goal>
    74                         </goals>
    75                         <configuration>
    76                             <descriptors>
    77                                 <descriptor>src/main/assembly/rt.xml</descriptor>
    78                             </descriptors>
    79                             <finalName>bck2brwsr-${project.version}</finalName>
    80                         </configuration>
    81                     </execution>
    82                 </executions>                
    83             </plugin>      
    84       </plugins>
    85   </build>
    86 </project>