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
     1 <?xml version="1.0" encoding="UTF-8"?>
     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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <groupId>org.apidesign.html</groupId>
     5   <artifactId>demo</artifactId>
     6   <version>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Demo of HTML APIs</name>
     9   <parent>
    10     <groupId>net.java</groupId>
    11     <artifactId>jvnet-parent</artifactId>
    12     <version>3</version>
    13   </parent>  
    14   <properties>
    15       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16       <net.java.html.version>0.8</net.java.html.version>
    17       <bck2brwsr.version>0.8.1</bck2brwsr.version>
    18       <teavm.version>0.1</teavm.version>
    19       <license>COPYING</license>
    20   </properties>
    21   <modules>
    22     <module>chat</module>
    23     <module>chess</module>
    24     <module>minesweeper</module>
    25     <module>spinningcube</module>
    26     <module>words</module>
    27   </modules>
    28   <licenses>
    29       <license>
    30           <name>MIT</name>
    31           <url>http://opensource.org/licenses/mit-license.php</url>
    32           <distribution>repo</distribution>
    33       </license>
    34   </licenses>
    35   <organization>
    36       <name>API Design</name>
    37       <url>http://apidesign.org</url>
    38   </organization>
    39   <scm>
    40       <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    41       <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    42       <url>https://hg.java.net/hg/html~demo</url>
    43       <tag>default</tag>
    44   </scm>
    45   <pluginRepositories>
    46       <pluginRepository>
    47           <id>mc-release</id>
    48           <name>Local Maven repository of releases</name>
    49           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    50           <snapshots>
    51               <enabled>false</enabled>
    52           </snapshots>
    53           <releases>
    54               <enabled>true</enabled>
    55           </releases>
    56       </pluginRepository>
    57   </pluginRepositories>
    58   <build>
    59       <plugins>
    60          <plugin>
    61               <inherited>false</inherited>
    62               <groupId>com.mycila.maven-license-plugin</groupId>
    63               <artifactId>maven-license-plugin</artifactId>
    64               <version>1.9.0</version>
    65               <executions>
    66                   <execution>
    67                       <id>blah</id>
    68                       <goals>
    69                           <goal>check</goal>
    70                       </goals>
    71                   </execution>
    72               </executions>
    73               <configuration>
    74                   <aggregate>true</aggregate>
    75                   <basedir>${basedir}</basedir>
    76                   <header>COPYING</header>
    77                   <strictCheck>true</strictCheck>
    78                   <excludes>
    79                        <exclude>*</exclude>
    80                        <exclude>.*/**</exclude>
    81                   </excludes>
    82               </configuration>
    83           </plugin>
    84       </plugins>
    85   </build>
    86 </project>