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