pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 12 Feb 2014 10:36:16 +0100
branchminesweeper
changeset 85 748db72a7f57
parent 62 a714dd168248
child 89 5a8a80e18430
child 106 09a0a7d7a960
child 115 c9ea9ae71c2c
permissions -rw-r--r--
Brinding in fixes from default branch
     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.html</groupId>
     5   <artifactId>demo</artifactId>
     6   <version>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Demo of HTML APIs</name>
     9   <parent>
    10     <groupId>net.java</groupId>
    11     <artifactId>jvnet-parent</artifactId>
    12     <version>3</version>
    13   </parent>  
    14   <properties>
    15       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16       <net.java.html.version>0.7.5</net.java.html.version>
    17       <bck2brwsr.version>0.8.1</bck2brwsr.version>
    18       <license>COPYING</license>
    19   </properties>
    20   <modules>
    21     <module>chat</module>
    22     <module>chess</module>
    23     <module>minesweeper</module>
    24     <module>spinningcube</module>
    25     <module>words</module>
    26   </modules>
    27   <licenses>
    28       <license>
    29           <name>MIT</name>
    30           <url>http://opensource.org/licenses/mit-license.php</url>
    31           <distribution>repo</distribution>
    32       </license>
    33   </licenses>
    34   <organization>
    35       <name>API Design</name>
    36       <url>http://apidesign.org</url>
    37   </organization>
    38   <scm>
    39       <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    40       <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    41       <url>https://hg.java.net/hg/html~demo</url>
    42       <tag>default</tag>
    43   </scm>
    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                   </excludes>
    81               </configuration>
    82           </plugin>
    83       </plugins>
    84   </build>
    85 </project>