pom.xml
author Lubomir Nerad <lubomir.nerad@sun.com>
Fri, 14 Dec 2012 11:15:37 +0100
branchregisters
changeset 317 15cbc8cb2163
parent 268 e01b65623f72
child 323 d41cfd77842d
permissions -rw-r--r--
Merge with trunk
     1 <?xml version="1.0" encoding="UTF-8"?>
     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   <groupId>org.apidesign</groupId>
     5   <artifactId>bck2brwsr</artifactId>
     6   <version>0.3-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Back 2 Browser</name>
     9   <modules>
    10     <module>vm</module>
    11     <module>emul</module>
    12     <module>core</module>
    13     <module>mojo</module>
    14     <module>javaquery</module>
    15     <module>javap</module>
    16     <module>benchmarks</module>
    17   </modules>
    18   <licenses>
    19       <license>
    20           <name>GPL-2.0</name>
    21           <url>http://opensource.org/licenses/GPL-2.0</url>
    22           <distribution>repo</distribution>
    23       </license>
    24   </licenses>
    25   <organization>
    26       <name>API Design</name>
    27       <url>http://apidesign.org</url>
    28   </organization>
    29   <repositories>
    30       <repository>
    31           <id>netbeans</id>
    32           <name>NetBeans</name>
    33           <url>http://bits.netbeans.org/maven2/</url>
    34       </repository>
    35   </repositories>
    36   <pluginRepositories>
    37       <pluginRepository>
    38           <id>mc-release</id>
    39           <name>Local Maven repository of releases</name>
    40           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    41           <snapshots>
    42               <enabled>false</enabled>
    43           </snapshots>
    44           <releases>
    45               <enabled>true</enabled>
    46           </releases>
    47       </pluginRepository>
    48   </pluginRepositories>
    49   <build>
    50       <plugins>
    51          <plugin>
    52               <inherited>false</inherited>
    53               <groupId>com.mycila.maven-license-plugin</groupId>
    54               <artifactId>maven-license-plugin</artifactId>
    55               <version>1.9.0</version>
    56               <executions>
    57                   <execution>
    58                       <id>blah</id>
    59                       <goals>
    60                           <goal>check</goal>
    61                       </goals>
    62                   </execution>
    63               </executions>
    64               <configuration>
    65                   <aggregate>true</aggregate>
    66                   <basedir>${basedir}</basedir>
    67                   <header>COPYING</header>
    68                   <strictCheck>true</strictCheck>
    69                   <excludes>
    70                        <exclude>emul/**</exclude>
    71                        <exclude>javap/**</exclude>
    72                        <exclude>*</exclude>
    73                        <exclude>.*/**</exclude>
    74                   </excludes>
    75               </configuration>
    76           </plugin>
    77       </plugins>
    78   </build>
    79   <dependencyManagement>
    80       <dependencies>
    81         <dependency>
    82           <groupId>org.testng</groupId>
    83           <artifactId>testng</artifactId>
    84           <version>6.7</version>
    85           <scope>test</scope>
    86           <exclusions>
    87             <exclusion>
    88               <artifactId>junit</artifactId>
    89               <groupId>junit</groupId>
    90             </exclusion>
    91           </exclusions>
    92         </dependency>
    93         <dependency>
    94           <groupId>org.netbeans.api</groupId>
    95           <artifactId>org-netbeans-modules-classfile</artifactId>
    96           <version>RELEASE72</version>
    97           <type>jar</type>
    98         </dependency>
    99         <dependency>
   100           <groupId>org.netbeans.api</groupId>
   101           <artifactId>org-openide-util-lookup</artifactId>
   102           <version>RELEASE72</version>
   103           <scope>compile</scope>
   104           <type>jar</type>
   105         </dependency>
   106       </dependencies>
   107   </dependencyManagement>
   108   <properties>
   109       <license>COPYING</license>
   110   </properties>
   111 </project>