pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 28 Jun 2015 06:27:44 +0200
changeset 234 29c53842c02a
parent 226 40acb3267711
child 236 b157a20a6945
permissions -rw-r--r--
Remembering reference to the model
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@227
    16
      <net.java.html.version>1.1</net.java.html.version>
jaroslav@226
    17
      <jersey.version>2.13</jersey.version>
jaroslav@226
    18
      <grizzly.version>2.3.16</grizzly.version>
jaroslav@218
    19
      <nb.html.version>1.0</nb.html.version>
jaroslav@227
    20
      <bck2brwsr.version>0.12</bck2brwsr.version>
jaroslav@219
    21
      <teavm.version>0.2.1</teavm.version>
jtulach@0
    22
      <license>COPYING</license>
jtulach@0
    23
  </properties>
jtulach@0
    24
  <modules>
jtulach@13
    25
    <module>chat</module>
jtulach@22
    26
    <module>chess</module>
jtulach@63
    27
    <module>minesweeper</module>
jtulach@41
    28
    <module>spinningcube</module>
jtulach@46
    29
    <module>words</module>
jtulach@0
    30
  </modules>
jtulach@0
    31
  <licenses>
jtulach@0
    32
      <license>
jtulach@0
    33
          <name>MIT</name>
jtulach@0
    34
          <url>http://opensource.org/licenses/mit-license.php</url>
jtulach@0
    35
          <distribution>repo</distribution>
jtulach@0
    36
      </license>
jtulach@0
    37
  </licenses>
jtulach@0
    38
  <organization>
jtulach@0
    39
      <name>API Design</name>
jtulach@0
    40
      <url>http://apidesign.org</url>
jtulach@0
    41
  </organization>
jtulach@0
    42
  <scm>
jtulach@0
    43
      <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
jtulach@0
    44
      <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
jtulach@0
    45
      <url>https://hg.java.net/hg/html~demo</url>
jtulach@0
    46
      <tag>default</tag>
jtulach@0
    47
  </scm>
jtulach@0
    48
  <build>
jtulach@0
    49
      <plugins>
jaroslav@226
    50
          <plugin>
jaroslav@226
    51
              <groupId>org.apache.maven.plugins</groupId>
jaroslav@226
    52
              <artifactId>maven-enforcer-plugin</artifactId>
jaroslav@226
    53
              <version>1.3.1</version>
jaroslav@226
    54
              <executions>
jaroslav@226
    55
                  <execution>
jaroslav@226
    56
                      <id>enforce-versions</id>
jaroslav@226
    57
                      <goals>
jaroslav@226
    58
                          <goal>enforce</goal>
jaroslav@226
    59
                      </goals>
jaroslav@226
    60
                      <configuration>
jaroslav@226
    61
                          <rules>
jaroslav@226
    62
                              <DependencyConvergence/>
jaroslav@226
    63
                              <requireJavaVersion>
jaroslav@226
    64
                                  <version>1.7</version>
jaroslav@226
    65
                              </requireJavaVersion>
jaroslav@226
    66
                          </rules>
jaroslav@226
    67
                      </configuration>
jaroslav@226
    68
                  </execution>
jaroslav@226
    69
              </executions>              
jaroslav@226
    70
          </plugin>
jtulach@0
    71
         <plugin>
jtulach@0
    72
              <inherited>false</inherited>
jtulach@0
    73
              <groupId>com.mycila.maven-license-plugin</groupId>
jtulach@0
    74
              <artifactId>maven-license-plugin</artifactId>
jtulach@0
    75
              <version>1.9.0</version>
jtulach@0
    76
              <executions>
jtulach@0
    77
                  <execution>
jtulach@0
    78
                      <id>blah</id>
jtulach@0
    79
                      <goals>
jtulach@0
    80
                          <goal>check</goal>
jtulach@0
    81
                      </goals>
jtulach@0
    82
                  </execution>
jtulach@0
    83
              </executions>
jtulach@0
    84
              <configuration>
jtulach@0
    85
                  <aggregate>true</aggregate>
jtulach@0
    86
                  <basedir>${basedir}</basedir>
jtulach@0
    87
                  <header>COPYING</header>
jtulach@0
    88
                  <strictCheck>true</strictCheck>
jtulach@0
    89
                  <excludes>
jtulach@0
    90
                       <exclude>*</exclude>
jtulach@0
    91
                       <exclude>.*/**</exclude>
jtulach@0
    92
                  </excludes>
jtulach@0
    93
              </configuration>
jtulach@0
    94
          </plugin>
jtulach@0
    95
      </plugins>
jtulach@0
    96
  </build>
jtulach@41
    97
</project>