pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 23 Feb 2015 10:34:39 +0100
branchteavm
changeset 233 908708015f61
parent 218 52badacce2cc
child 226 40acb3267711
permissions -rw-r--r--
Simplifying execution of TeaVM version. Use: mvn -Pteabrwsr clean package bck2brwsr:brwsr
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@212
    16
      <net.java.html.version>1.0</net.java.html.version>
jaroslav@218
    17
      <nb.html.version>1.0</nb.html.version>
jaroslav@218
    18
      <bck2brwsr.version>0.11</bck2brwsr.version>
jaroslav@219
    19
      <teavm.version>0.2.1</teavm.version>
jtulach@0
    20
      <license>COPYING</license>
jtulach@0
    21
  </properties>
jtulach@0
    22
  <modules>
jtulach@13
    23
    <module>chat</module>
jtulach@22
    24
    <module>chess</module>
jtulach@63
    25
    <module>minesweeper</module>
jtulach@41
    26
    <module>spinningcube</module>
jtulach@46
    27
    <module>words</module>
jtulach@0
    28
  </modules>
jtulach@0
    29
  <licenses>
jtulach@0
    30
      <license>
jtulach@0
    31
          <name>MIT</name>
jtulach@0
    32
          <url>http://opensource.org/licenses/mit-license.php</url>
jtulach@0
    33
          <distribution>repo</distribution>
jtulach@0
    34
      </license>
jtulach@0
    35
  </licenses>
jtulach@0
    36
  <organization>
jtulach@0
    37
      <name>API Design</name>
jtulach@0
    38
      <url>http://apidesign.org</url>
jtulach@0
    39
  </organization>
jtulach@0
    40
  <scm>
jtulach@0
    41
      <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
jtulach@0
    42
      <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
jtulach@0
    43
      <url>https://hg.java.net/hg/html~demo</url>
jtulach@0
    44
      <tag>default</tag>
jtulach@0
    45
  </scm>
jtulach@0
    46
  <pluginRepositories>
jtulach@0
    47
      <pluginRepository>
jtulach@0
    48
          <id>mc-release</id>
jtulach@0
    49
          <name>Local Maven repository of releases</name>
jtulach@0
    50
          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
jtulach@0
    51
          <snapshots>
jtulach@0
    52
              <enabled>false</enabled>
jtulach@0
    53
          </snapshots>
jtulach@0
    54
          <releases>
jtulach@0
    55
              <enabled>true</enabled>
jtulach@0
    56
          </releases>
jtulach@0
    57
      </pluginRepository>
jtulach@0
    58
  </pluginRepositories>
jtulach@0
    59
  <build>
jtulach@0
    60
      <plugins>
jtulach@0
    61
         <plugin>
jtulach@0
    62
              <inherited>false</inherited>
jtulach@0
    63
              <groupId>com.mycila.maven-license-plugin</groupId>
jtulach@0
    64
              <artifactId>maven-license-plugin</artifactId>
jtulach@0
    65
              <version>1.9.0</version>
jtulach@0
    66
              <executions>
jtulach@0
    67
                  <execution>
jtulach@0
    68
                      <id>blah</id>
jtulach@0
    69
                      <goals>
jtulach@0
    70
                          <goal>check</goal>
jtulach@0
    71
                      </goals>
jtulach@0
    72
                  </execution>
jtulach@0
    73
              </executions>
jtulach@0
    74
              <configuration>
jtulach@0
    75
                  <aggregate>true</aggregate>
jtulach@0
    76
                  <basedir>${basedir}</basedir>
jtulach@0
    77
                  <header>COPYING</header>
jtulach@0
    78
                  <strictCheck>true</strictCheck>
jtulach@0
    79
                  <excludes>
jtulach@0
    80
                       <exclude>*</exclude>
jtulach@0
    81
                       <exclude>.*/**</exclude>
jtulach@0
    82
                  </excludes>
jtulach@0
    83
              </configuration>
jtulach@0
    84
          </plugin>
jtulach@0
    85
      </plugins>
jtulach@0
    86
  </build>
jtulach@41
    87
</project>