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