pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 02 Mar 2013 17:02:00 +0100
changeset 806 178754f29511
parent 804 7367a296a9ec
child 810 9eb750594b15
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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.4-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               <plugin>
    98                 <groupId>org.apache.maven.plugins</groupId>
    99                 <artifactId>maven-javadoc-plugin</artifactId>
   100                 <version>2.9</version>
   101                 <configuration>
   102                     <skip>true</skip>
   103                 </configuration>
   104               </plugin>
   105           </plugins>
   106       </pluginManagement>
   107   </build>
   108   <dependencyManagement>
   109       <dependencies>
   110         <dependency>
   111           <groupId>org.testng</groupId>
   112           <artifactId>testng</artifactId>
   113           <version>6.7</version>
   114           <scope>test</scope>
   115           <exclusions>
   116             <exclusion>
   117               <artifactId>junit</artifactId>
   118               <groupId>junit</groupId>
   119             </exclusion>
   120           </exclusions>
   121         </dependency>
   122         <dependency>
   123           <groupId>org.netbeans.api</groupId>
   124           <artifactId>org-netbeans-modules-classfile</artifactId>
   125           <version>RELEASE72</version>
   126           <type>jar</type>
   127         </dependency>
   128         <dependency>
   129           <groupId>org.netbeans.api</groupId>
   130           <artifactId>org-openide-util-lookup</artifactId>
   131           <version>RELEASE72</version>
   132           <scope>compile</scope>
   133           <type>jar</type>
   134         </dependency>
   135       </dependencies>
   136   </dependencyManagement>
   137   <properties>
   138       <license>COPYING</license>
   139   </properties>
   140 </project>