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