pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Sep 2014 11:06:10 +0200
branchnbrwsr
changeset 214 d682c126a078
parent 207 caac10b379ae
permissions -rw-r--r--
Switching to version 1.0 of HTML4J and nbrwsr
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>
jaroslav@214
    16
      <net.java.html.version>1.0</net.java.html.version>
jaroslav@214
    17
      <nb.html.version>1.0</nb.html.version>
jtulach@161
    18
      <bck2brwsr.version>0.9</bck2brwsr.version>
jtulach@115
    19
      <teavm.version>0.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@207
    59
  <repositories>
jtulach@207
    60
      <repository>
jtulach@207
    61
          <id>netbeans</id>
jtulach@207
    62
          <name>NetBeans</name>
jtulach@207
    63
          <url>http://bits.netbeans.org/maven2/</url>
jtulach@207
    64
      </repository>
jtulach@207
    65
  </repositories>
jtulach@0
    66
  <build>
jtulach@0
    67
      <plugins>
jtulach@0
    68
         <plugin>
jtulach@0
    69
              <inherited>false</inherited>
jtulach@0
    70
              <groupId>com.mycila.maven-license-plugin</groupId>
jtulach@0
    71
              <artifactId>maven-license-plugin</artifactId>
jtulach@0
    72
              <version>1.9.0</version>
jtulach@0
    73
              <executions>
jtulach@0
    74
                  <execution>
jtulach@0
    75
                      <id>blah</id>
jtulach@0
    76
                      <goals>
jtulach@0
    77
                          <goal>check</goal>
jtulach@0
    78
                      </goals>
jtulach@0
    79
                  </execution>
jtulach@0
    80
              </executions>
jtulach@0
    81
              <configuration>
jtulach@0
    82
                  <aggregate>true</aggregate>
jtulach@0
    83
                  <basedir>${basedir}</basedir>
jtulach@0
    84
                  <header>COPYING</header>
jtulach@0
    85
                  <strictCheck>true</strictCheck>
jtulach@0
    86
                  <excludes>
jtulach@0
    87
                       <exclude>*</exclude>
jtulach@0
    88
                       <exclude>.*/**</exclude>
jtulach@0
    89
                  </excludes>
jtulach@0
    90
              </configuration>
jtulach@0
    91
          </plugin>
jtulach@0
    92
      </plugins>
jtulach@0
    93
  </build>
jtulach@41
    94
</project>