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