pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 751 c6878807b0d4
child 793 033ea09379a0
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
     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   <parent>
    10     <groupId>net.java</groupId>
    11     <artifactId>jvnet-parent</artifactId>
    12     <version>3</version>
    13   </parent>  
    14   <modules>
    15     <module>dew</module>
    16     <module>javaquery</module>
    17     <module>benchmarks</module>
    18     <module>ide</module>
    19     <module>rt</module>
    20   </modules>
    21   <licenses>
    22       <license>
    23           <name>GPL-2.0</name>
    24           <url>http://opensource.org/licenses/GPL-2.0</url>
    25           <distribution>repo</distribution>
    26       </license>
    27   </licenses>
    28   <organization>
    29       <name>API Design</name>
    30       <url>http://apidesign.org</url>
    31   </organization>
    32   <scm>
    33       <connection>scm:hg:http://source.apidesign.org/hg/bck2brwsr</connection>
    34       <developerConnection>scm:hg:https://source.apidesign.org/hg/bck2brwsr</developerConnection>
    35       <url>http://source.apidesign.org/hg/bck2brwsr</url>
    36   </scm>
    37   <repositories>
    38       <repository>
    39           <id>netbeans</id>
    40           <name>NetBeans</name>
    41           <url>http://bits.netbeans.org/maven2/</url>
    42       </repository>
    43   </repositories>
    44   <pluginRepositories>
    45       <pluginRepository>
    46           <id>mc-release</id>
    47           <name>Local Maven repository of releases</name>
    48           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    49           <snapshots>
    50               <enabled>false</enabled>
    51           </snapshots>
    52           <releases>
    53               <enabled>true</enabled>
    54           </releases>
    55       </pluginRepository>
    56   </pluginRepositories>
    57   <build>
    58       <plugins>
    59          <plugin>
    60               <inherited>false</inherited>
    61               <groupId>com.mycila.maven-license-plugin</groupId>
    62               <artifactId>maven-license-plugin</artifactId>
    63               <version>1.9.0</version>
    64               <executions>
    65                   <execution>
    66                       <id>blah</id>
    67                       <goals>
    68                           <goal>check</goal>
    69                       </goals>
    70                   </execution>
    71               </executions>
    72               <configuration>
    73                   <aggregate>true</aggregate>
    74                   <basedir>${basedir}</basedir>
    75                   <header>COPYING</header>
    76                   <strictCheck>true</strictCheck>
    77                   <excludes>
    78                        <exclude>*</exclude>
    79                        <exclude>.*/**</exclude>
    80                        <exclude>rt/emul/*/src/main/**</exclude>
    81                        <exclude>rt/javap/**</exclude>
    82                        <exclude>rt/mojo/src/main/resources/archetype-resources/**</exclude>
    83                        <exclude>rt/vmtest/src/test/resources/**</exclude>
    84                        <exclude>dew/src/main/resources/org/apidesign/bck2brwsr/dew/**</exclude>
    85                        <exclude>javaquery/api/src/main/resources/org/apidesign/bck2brwsr/htmlpage/knockout*.js</exclude>
    86                   </excludes>
    87               </configuration>
    88           </plugin>
    89       </plugins>
    90       <pluginManagement>
    91           <plugins>
    92               <plugin>
    93                 <groupId>org.apache.maven.plugins</groupId>
    94                 <artifactId>maven-surefire-plugin</artifactId>
    95                 <version>2.13</version>
    96               </plugin>
    97           </plugins>
    98       </pluginManagement>
    99   </build>
   100   <dependencyManagement>
   101       <dependencies>
   102         <dependency>
   103           <groupId>org.testng</groupId>
   104           <artifactId>testng</artifactId>
   105           <version>6.7</version>
   106           <scope>test</scope>
   107           <exclusions>
   108             <exclusion>
   109               <artifactId>junit</artifactId>
   110               <groupId>junit</groupId>
   111             </exclusion>
   112           </exclusions>
   113         </dependency>
   114         <dependency>
   115           <groupId>org.netbeans.api</groupId>
   116           <artifactId>org-netbeans-modules-classfile</artifactId>
   117           <version>RELEASE72</version>
   118           <type>jar</type>
   119         </dependency>
   120         <dependency>
   121           <groupId>org.netbeans.api</groupId>
   122           <artifactId>org-openide-util-lookup</artifactId>
   123           <version>RELEASE72</version>
   124           <scope>compile</scope>
   125           <type>jar</type>
   126         </dependency>
   127       </dependencies>
   128   </dependencyManagement>
   129   <properties>
   130       <license>COPYING</license>
   131   </properties>
   132 </project>