pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 20 Jun 2013 13:28:40 +0200
branchclassloader
changeset 37 4a36b310c6da
parent 5 f0a52c72ef74
child 22 fb06534ab8db
child 41 d575ea92c508
permissions -rw-r--r--
Removing references to bck2brwsr as in this form the project can't run in bck2brwsr mode
     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       <bck2brwsr.version>0.7</bck2brwsr.version>
    17       <license>COPYING</license>
    18   </properties>
    19   <modules>
    20     <module>twitter</module>
    21     <module>chat</module>
    22   </modules>
    23   <licenses>
    24       <license>
    25           <name>MIT</name>
    26           <url>http://opensource.org/licenses/mit-license.php</url>
    27           <distribution>repo</distribution>
    28       </license>
    29   </licenses>
    30   <organization>
    31       <name>API Design</name>
    32       <url>http://apidesign.org</url>
    33   </organization>
    34   <scm>
    35       <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    36       <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    37       <url>https://hg.java.net/hg/html~demo</url>
    38       <tag>default</tag>
    39   </scm>
    40   <pluginRepositories>
    41       <pluginRepository>
    42           <id>mc-release</id>
    43           <name>Local Maven repository of releases</name>
    44           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    45           <snapshots>
    46               <enabled>false</enabled>
    47           </snapshots>
    48           <releases>
    49               <enabled>true</enabled>
    50           </releases>
    51       </pluginRepository>
    52   </pluginRepositories>
    53   <build>
    54       <plugins>
    55          <plugin>
    56               <inherited>false</inherited>
    57               <groupId>com.mycila.maven-license-plugin</groupId>
    58               <artifactId>maven-license-plugin</artifactId>
    59               <version>1.9.0</version>
    60               <executions>
    61                   <execution>
    62                       <id>blah</id>
    63                       <goals>
    64                           <goal>check</goal>
    65                       </goals>
    66                   </execution>
    67               </executions>
    68               <configuration>
    69                   <aggregate>true</aggregate>
    70                   <basedir>${basedir}</basedir>
    71                   <header>COPYING</header>
    72                   <strictCheck>true</strictCheck>
    73                   <excludes>
    74                        <exclude>*</exclude>
    75                        <exclude>.*/**</exclude>
    76                   </excludes>
    77               </configuration>
    78           </plugin>
    79       </plugins>
    80   </build>
    81 </project>