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