pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Mar 2013 23:33:50 +0100
changeset 819 caf1e66268fd
parent 810 9eb750594b15
child 821 60caf5806aa8
permissions -rw-r--r--
[maven-release-plugin] prepare release release-${releaseVersion}
     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</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     <tag>release-${releaseVersion}</tag>
    37   </scm>
    38   <repositories>
    39       <repository>
    40           <id>netbeans</id>
    41           <name>NetBeans</name>
    42           <url>http://bits.netbeans.org/maven2/</url>
    43       </repository>
    44   </repositories>
    45   <pluginRepositories>
    46       <pluginRepository>
    47           <id>mc-release</id>
    48           <name>Local Maven repository of releases</name>
    49           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    50           <snapshots>
    51               <enabled>false</enabled>
    52           </snapshots>
    53           <releases>
    54               <enabled>true</enabled>
    55           </releases>
    56       </pluginRepository>
    57   </pluginRepositories>
    58   <build>
    59       <plugins>
    60          <plugin>
    61               <inherited>false</inherited>
    62               <groupId>com.mycila.maven-license-plugin</groupId>
    63               <artifactId>maven-license-plugin</artifactId>
    64               <version>1.9.0</version>
    65               <executions>
    66                   <execution>
    67                       <id>blah</id>
    68                       <goals>
    69                           <goal>check</goal>
    70                       </goals>
    71                   </execution>
    72               </executions>
    73               <configuration>
    74                   <aggregate>true</aggregate>
    75                   <basedir>${basedir}</basedir>
    76                   <header>COPYING</header>
    77                   <strictCheck>true</strictCheck>
    78                   <excludes>
    79                        <exclude>*</exclude>
    80                        <exclude>.*/**</exclude>
    81                        <exclude>rt/emul/*/src/main/**</exclude>
    82                        <exclude>rt/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeParser.java</exclude>
    83                        <exclude>rt/mojo/src/main/resources/archetype-resources/**</exclude>
    84                        <exclude>rt/vmtest/src/test/resources/**</exclude>
    85                        <exclude>dew/src/main/resources/org/apidesign/bck2brwsr/dew/**</exclude>
    86                        <exclude>javaquery/api/src/main/resources/org/apidesign/bck2brwsr/htmlpage/knockout*.js</exclude>
    87                   </excludes>
    88               </configuration>
    89           </plugin>
    90           <plugin>
    91               <groupId>org.apache.maven.plugins</groupId>
    92               <artifactId>maven-release-plugin</artifactId>
    93               <version>2.4</version>
    94               <configuration>
    95                   <tag>release-${releaseVersion}</tag>
    96               </configuration>
    97           </plugin>      </plugins>
    98       <pluginManagement>
    99           <plugins>
   100               <plugin>
   101                 <groupId>org.apache.maven.plugins</groupId>
   102                 <artifactId>maven-surefire-plugin</artifactId>
   103                 <version>2.13</version>
   104               </plugin>
   105               <plugin>
   106                 <groupId>org.apache.maven.plugins</groupId>
   107                 <artifactId>maven-javadoc-plugin</artifactId>
   108                 <version>2.9</version>
   109                 <configuration>
   110                     <skip>true</skip>
   111                 </configuration>
   112               </plugin>
   113           </plugins>
   114       </pluginManagement>
   115   </build>
   116   <dependencyManagement>
   117       <dependencies>
   118         <dependency>
   119           <groupId>org.testng</groupId>
   120           <artifactId>testng</artifactId>
   121           <version>6.7</version>
   122           <scope>test</scope>
   123           <exclusions>
   124             <exclusion>
   125               <artifactId>junit</artifactId>
   126               <groupId>junit</groupId>
   127             </exclusion>
   128           </exclusions>
   129         </dependency>
   130         <dependency>
   131           <groupId>org.netbeans.api</groupId>
   132           <artifactId>org-netbeans-modules-classfile</artifactId>
   133           <version>RELEASE72</version>
   134           <type>jar</type>
   135         </dependency>
   136         <dependency>
   137           <groupId>org.netbeans.api</groupId>
   138           <artifactId>org-openide-util-lookup</artifactId>
   139           <version>RELEASE72</version>
   140           <scope>compile</scope>
   141           <type>jar</type>
   142         </dependency>
   143       </dependencies>
   144   </dependencyManagement>
   145   <properties>
   146       <license>COPYING</license>
   147   </properties>
   148 </project>