pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Mar 2013 00:02:21 +0100
changeset 870 448bed1f6d5a
parent 865 03fe918c4684
child 895 850b213f47db
permissions -rw-r--r--
Separating the archetype into its own module - to give it better name among archetypes
     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.5-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     <tag>HEAD</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/archetype/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             <plugin>
   114                 <groupId>org.apache.maven.plugins</groupId>
   115                 <artifactId>maven-compiler-plugin</artifactId>
   116                 <version>2.3.2</version>
   117                 <configuration>
   118                     <source>1.7</source>
   119                     <target>1.7</target>
   120                 </configuration>
   121             </plugin>
   122           </plugins>
   123       </pluginManagement>
   124   </build>
   125   <dependencyManagement>
   126       <dependencies>
   127         <dependency>
   128           <groupId>org.testng</groupId>
   129           <artifactId>testng</artifactId>
   130           <version>6.7</version>
   131           <scope>test</scope>
   132           <exclusions>
   133             <exclusion>
   134               <artifactId>junit</artifactId>
   135               <groupId>junit</groupId>
   136             </exclusion>
   137           </exclusions>
   138         </dependency>
   139         <dependency>
   140           <groupId>org.netbeans.api</groupId>
   141           <artifactId>org-netbeans-modules-classfile</artifactId>
   142           <version>RELEASE73</version>
   143           <type>jar</type>
   144         </dependency>
   145         <dependency>
   146           <groupId>org.netbeans.api</groupId>
   147           <artifactId>org-openide-util-lookup</artifactId>
   148           <version>RELEASE73</version>
   149           <scope>compile</scope>
   150           <type>jar</type>
   151         </dependency>
   152       </dependencies>
   153   </dependencyManagement>
   154   <properties>
   155       <license>COPYING</license>
   156   </properties>
   157 </project>