pom.xml
changeset 0 6fe609b8f0fb
child 5 f0a52c72ef74
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Mon Apr 29 13:42:23 2013 +0200
     1.3 @@ -0,0 +1,80 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <groupId>org.apidesign.html</groupId>
     1.8 +  <artifactId>demo</artifactId>
     1.9 +  <version>1.0-SNAPSHOT</version>
    1.10 +  <packaging>pom</packaging>
    1.11 +  <name>Demo of HTML APIs</name>
    1.12 +  <parent>
    1.13 +    <groupId>net.java</groupId>
    1.14 +    <artifactId>jvnet-parent</artifactId>
    1.15 +    <version>3</version>
    1.16 +  </parent>  
    1.17 +  <properties>
    1.18 +      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.19 +      <bck2brwsr.version>0.7-SNAPSHOT</bck2brwsr.version>
    1.20 +      <license>COPYING</license>
    1.21 +  </properties>
    1.22 +  <modules>
    1.23 +    <module>twitter</module>
    1.24 +  </modules>
    1.25 +  <licenses>
    1.26 +      <license>
    1.27 +          <name>MIT</name>
    1.28 +          <url>http://opensource.org/licenses/mit-license.php</url>
    1.29 +          <distribution>repo</distribution>
    1.30 +      </license>
    1.31 +  </licenses>
    1.32 +  <organization>
    1.33 +      <name>API Design</name>
    1.34 +      <url>http://apidesign.org</url>
    1.35 +  </organization>
    1.36 +  <scm>
    1.37 +      <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    1.38 +      <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    1.39 +      <url>https://hg.java.net/hg/html~demo</url>
    1.40 +      <tag>default</tag>
    1.41 +  </scm>
    1.42 +  <pluginRepositories>
    1.43 +      <pluginRepository>
    1.44 +          <id>mc-release</id>
    1.45 +          <name>Local Maven repository of releases</name>
    1.46 +          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    1.47 +          <snapshots>
    1.48 +              <enabled>false</enabled>
    1.49 +          </snapshots>
    1.50 +          <releases>
    1.51 +              <enabled>true</enabled>
    1.52 +          </releases>
    1.53 +      </pluginRepository>
    1.54 +  </pluginRepositories>
    1.55 +  <build>
    1.56 +      <plugins>
    1.57 +         <plugin>
    1.58 +              <inherited>false</inherited>
    1.59 +              <groupId>com.mycila.maven-license-plugin</groupId>
    1.60 +              <artifactId>maven-license-plugin</artifactId>
    1.61 +              <version>1.9.0</version>
    1.62 +              <executions>
    1.63 +                  <execution>
    1.64 +                      <id>blah</id>
    1.65 +                      <goals>
    1.66 +                          <goal>check</goal>
    1.67 +                      </goals>
    1.68 +                  </execution>
    1.69 +              </executions>
    1.70 +              <configuration>
    1.71 +                  <aggregate>true</aggregate>
    1.72 +                  <basedir>${basedir}</basedir>
    1.73 +                  <header>COPYING</header>
    1.74 +                  <strictCheck>true</strictCheck>
    1.75 +                  <excludes>
    1.76 +                       <exclude>*</exclude>
    1.77 +                       <exclude>.*/**</exclude>
    1.78 +                  </excludes>
    1.79 +              </configuration>
    1.80 +          </plugin>
    1.81 +      </plugins>
    1.82 +  </build>
    1.83 +</project>
    1.84 \ No newline at end of file