pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 17 Nov 2013 09:46:45 +0100
branchchess
changeset 87 c2293ae622df
parent 48 4dbbfc8310b0
permissions -rw-r--r--
Adding histogram demo
jtulach@0
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@0
     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">
jtulach@0
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@0
     4
  <groupId>org.apidesign.html</groupId>
jtulach@0
     5
  <artifactId>demo</artifactId>
jtulach@0
     6
  <version>1.0-SNAPSHOT</version>
jtulach@0
     7
  <packaging>pom</packaging>
jtulach@0
     8
  <name>Demo of HTML APIs</name>
jtulach@0
     9
  <parent>
jtulach@0
    10
    <groupId>net.java</groupId>
jtulach@0
    11
    <artifactId>jvnet-parent</artifactId>
jtulach@0
    12
    <version>3</version>
jtulach@0
    13
  </parent>  
jtulach@0
    14
  <properties>
jtulach@0
    15
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@13
    16
      <bck2brwsr.version>0.7</bck2brwsr.version>
jtulach@0
    17
      <license>COPYING</license>
jtulach@0
    18
  </properties>
jtulach@0
    19
  <modules>
jtulach@0
    20
    <module>twitter</module>
jtulach@13
    21
    <module>chat</module>
jtulach@22
    22
    <module>chess</module>
jtulach@87
    23
    <module>histogram</module>
jtulach@41
    24
    <module>spinningcube</module>
jtulach@46
    25
    <module>words</module>
jtulach@0
    26
  </modules>
jtulach@0
    27
  <licenses>
jtulach@0
    28
      <license>
jtulach@0
    29
          <name>MIT</name>
jtulach@0
    30
          <url>http://opensource.org/licenses/mit-license.php</url>
jtulach@0
    31
          <distribution>repo</distribution>
jtulach@0
    32
      </license>
jtulach@0
    33
  </licenses>
jtulach@0
    34
  <organization>
jtulach@0
    35
      <name>API Design</name>
jtulach@0
    36
      <url>http://apidesign.org</url>
jtulach@0
    37
  </organization>
jtulach@0
    38
  <scm>
jtulach@0
    39
      <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
jtulach@0
    40
      <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
jtulach@0
    41
      <url>https://hg.java.net/hg/html~demo</url>
jtulach@0
    42
      <tag>default</tag>
jtulach@0
    43
  </scm>
jtulach@0
    44
  <pluginRepositories>
jtulach@0
    45
      <pluginRepository>
jtulach@0
    46
          <id>mc-release</id>
jtulach@0
    47
          <name>Local Maven repository of releases</name>
jtulach@0
    48
          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
jtulach@0
    49
          <snapshots>
jtulach@0
    50
              <enabled>false</enabled>
jtulach@0
    51
          </snapshots>
jtulach@0
    52
          <releases>
jtulach@0
    53
              <enabled>true</enabled>
jtulach@0
    54
          </releases>
jtulach@0
    55
      </pluginRepository>
jtulach@0
    56
  </pluginRepositories>
jtulach@0
    57
  <build>
jtulach@0
    58
      <plugins>
jtulach@0
    59
         <plugin>
jtulach@0
    60
              <inherited>false</inherited>
jtulach@0
    61
              <groupId>com.mycila.maven-license-plugin</groupId>
jtulach@0
    62
              <artifactId>maven-license-plugin</artifactId>
jtulach@0
    63
              <version>1.9.0</version>
jtulach@0
    64
              <executions>
jtulach@0
    65
                  <execution>
jtulach@0
    66
                      <id>blah</id>
jtulach@0
    67
                      <goals>
jtulach@0
    68
                          <goal>check</goal>
jtulach@0
    69
                      </goals>
jtulach@0
    70
                  </execution>
jtulach@0
    71
              </executions>
jtulach@0
    72
              <configuration>
jtulach@0
    73
                  <aggregate>true</aggregate>
jtulach@0
    74
                  <basedir>${basedir}</basedir>
jtulach@0
    75
                  <header>COPYING</header>
jtulach@0
    76
                  <strictCheck>true</strictCheck>
jtulach@0
    77
                  <excludes>
jtulach@0
    78
                       <exclude>*</exclude>
jtulach@0
    79
                       <exclude>.*/**</exclude>
jtulach@0
    80
                  </excludes>
jtulach@0
    81
              </configuration>
jtulach@0
    82
          </plugin>
jtulach@0
    83
      </plugins>
jtulach@0
    84
  </build>
jtulach@41
    85
</project>