pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 25 Jul 2013 15:09:49 +0200
branchchess
changeset 22 fb06534ab8db
parent 13 fd9a16bbfd0e
child 48 4dbbfc8310b0
permissions -rw-r--r--
Initial version of the chess board displaying application
     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       <bck2brwsr.version>0.7</bck2brwsr.version>
    17       <license>COPYING</license>
    18   </properties>
    19   <modules>
    20     <module>twitter</module>
    21     <module>chat</module>
    22     <module>chess</module>
    23   </modules>
    24   <licenses>
    25       <license>
    26           <name>MIT</name>
    27           <url>http://opensource.org/licenses/mit-license.php</url>
    28           <distribution>repo</distribution>
    29       </license>
    30   </licenses>
    31   <organization>
    32       <name>API Design</name>
    33       <url>http://apidesign.org</url>
    34   </organization>
    35   <scm>
    36       <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    37       <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    38       <url>https://hg.java.net/hg/html~demo</url>
    39       <tag>default</tag>
    40   </scm>
    41   <pluginRepositories>
    42       <pluginRepository>
    43           <id>mc-release</id>
    44           <name>Local Maven repository of releases</name>
    45           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    46           <snapshots>
    47               <enabled>false</enabled>
    48           </snapshots>
    49           <releases>
    50               <enabled>true</enabled>
    51           </releases>
    52       </pluginRepository>
    53   </pluginRepositories>
    54   <build>
    55       <plugins>
    56          <plugin>
    57               <inherited>false</inherited>
    58               <groupId>com.mycila.maven-license-plugin</groupId>
    59               <artifactId>maven-license-plugin</artifactId>
    60               <version>1.9.0</version>
    61               <executions>
    62                   <execution>
    63                       <id>blah</id>
    64                       <goals>
    65                           <goal>check</goal>
    66                       </goals>
    67                   </execution>
    68               </executions>
    69               <configuration>
    70                   <aggregate>true</aggregate>
    71                   <basedir>${basedir}</basedir>
    72                   <header>COPYING</header>
    73                   <strictCheck>true</strictCheck>
    74                   <excludes>
    75                        <exclude>*</exclude>
    76                        <exclude>.*/**</exclude>
    77                   </excludes>
    78               </configuration>
    79           </plugin>
    80       </plugins>
    81   </build>
    82 </project>