pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 18 May 2014 11:36:11 +0200
branchibrwsr
changeset 140 6dfda3dedf1a
parent 124 533c2be1747c
parent 127 33b12135e7a5
child 147 69ff76aa9280
permissions -rw-r--r--
No need to specify rootdir, the post 0.8 version of html4j will derive the location from location of a resource in a JAR since: 41b0cfec61b1
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@127
    16
      <net.java.html.version>0.8</net.java.html.version>
jtulach@62
    17
      <bck2brwsr.version>0.8.1</bck2brwsr.version>
jtulach@115
    18
      <teavm.version>0.1</teavm.version>
jtulach@0
    19
      <license>COPYING</license>
jtulach@0
    20
  </properties>
jtulach@0
    21
  <modules>
jtulach@13
    22
    <module>chat</module>
jtulach@22
    23
    <module>chess</module>
jtulach@63
    24
    <module>minesweeper</module>
jtulach@41
    25
    <module>spinningcube</module>
jtulach@46
    26
    <module>words</module>
jtulach@0
    27
  </modules>
jtulach@0
    28
  <licenses>
jtulach@0
    29
      <license>
jtulach@0
    30
          <name>MIT</name>
jtulach@0
    31
          <url>http://opensource.org/licenses/mit-license.php</url>
jtulach@0
    32
          <distribution>repo</distribution>
jtulach@0
    33
      </license>
jtulach@0
    34
  </licenses>
jtulach@0
    35
  <organization>
jtulach@0
    36
      <name>API Design</name>
jtulach@0
    37
      <url>http://apidesign.org</url>
jtulach@0
    38
  </organization>
jtulach@0
    39
  <scm>
jtulach@0
    40
      <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
jtulach@0
    41
      <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
jtulach@0
    42
      <url>https://hg.java.net/hg/html~demo</url>
jtulach@0
    43
      <tag>default</tag>
jtulach@0
    44
  </scm>
jtulach@0
    45
  <pluginRepositories>
jtulach@0
    46
      <pluginRepository>
jtulach@0
    47
          <id>mc-release</id>
jtulach@0
    48
          <name>Local Maven repository of releases</name>
jtulach@0
    49
          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
jtulach@0
    50
          <snapshots>
jtulach@0
    51
              <enabled>false</enabled>
jtulach@0
    52
          </snapshots>
jtulach@0
    53
          <releases>
jtulach@0
    54
              <enabled>true</enabled>
jtulach@0
    55
          </releases>
jtulach@0
    56
      </pluginRepository>
jtulach@0
    57
  </pluginRepositories>
jtulach@0
    58
  <build>
jtulach@0
    59
      <plugins>
jtulach@0
    60
         <plugin>
jtulach@0
    61
              <inherited>false</inherited>
jtulach@0
    62
              <groupId>com.mycila.maven-license-plugin</groupId>
jtulach@0
    63
              <artifactId>maven-license-plugin</artifactId>
jtulach@0
    64
              <version>1.9.0</version>
jtulach@0
    65
              <executions>
jtulach@0
    66
                  <execution>
jtulach@0
    67
                      <id>blah</id>
jtulach@0
    68
                      <goals>
jtulach@0
    69
                          <goal>check</goal>
jtulach@0
    70
                      </goals>
jtulach@0
    71
                  </execution>
jtulach@0
    72
              </executions>
jtulach@0
    73
              <configuration>
jtulach@0
    74
                  <aggregate>true</aggregate>
jtulach@0
    75
                  <basedir>${basedir}</basedir>
jtulach@0
    76
                  <header>COPYING</header>
jtulach@0
    77
                  <strictCheck>true</strictCheck>
jtulach@0
    78
                  <excludes>
jtulach@0
    79
                       <exclude>*</exclude>
jtulach@0
    80
                       <exclude>.*/**</exclude>
jtulach@0
    81
                  </excludes>
jtulach@0
    82
              </configuration>
jtulach@0
    83
          </plugin>
jtulach@0
    84
      </plugins>
jtulach@0
    85
  </build>
jtulach@41
    86
</project>