pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Sep 2012 15:06:43 +0200
changeset 26 03e4aaa4ef3d
parent 25 e214f04abb98
child 49 0a115f1c6f3c
child 91 f3b685bd7243
permissions -rw-r--r--
Can extract 'id' elements from a page and generate appropriate HTML page
     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</groupId>
     5   <artifactId>bck2brwsr</artifactId>
     6   <version>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Back 2 Browser</name>
     9   <modules>
    10       <module>vm</module>
    11     <module>htmlpage</module>
    12   </modules>
    13   <licenses>
    14       <license>
    15           <name>GPL-2.0</name>
    16           <url>http://opensource.org/licenses/GPL-2.0</url>
    17           <distribution>repo</distribution>
    18       </license>
    19   </licenses>
    20   <organization>
    21       <name>API Design</name>
    22       <url>http://apidesign.org</url>
    23   </organization>
    24   <repositories>
    25       <repository>
    26           <id>netbeans</id>
    27           <name>NetBeans</name>
    28           <url>http://bits.netbeans.org/maven2/</url>
    29       </repository>
    30   </repositories>
    31   <pluginRepositories>
    32       <pluginRepository>
    33           <id>mc-release</id>
    34           <name>Local Maven repository of releases</name>
    35           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    36           <snapshots>
    37               <enabled>false</enabled>
    38           </snapshots>
    39           <releases>
    40               <enabled>true</enabled>
    41           </releases>
    42       </pluginRepository>
    43   </pluginRepositories>
    44   <dependencyManagement>
    45       <dependencies>
    46         <dependency>
    47           <groupId>org.testng</groupId>
    48           <artifactId>testng</artifactId>
    49           <version>6.7</version>
    50           <scope>test</scope>
    51           <exclusions>
    52             <exclusion>
    53               <artifactId>junit</artifactId>
    54               <groupId>junit</groupId>
    55             </exclusion>
    56           </exclusions>
    57         </dependency>
    58         <dependency>
    59           <groupId>org.netbeans.api</groupId>
    60           <artifactId>org-netbeans-modules-classfile</artifactId>
    61           <version>RELEASE72</version>
    62           <type>jar</type>
    63         </dependency>
    64         <dependency>
    65           <groupId>org.netbeans.api</groupId>
    66           <artifactId>org-openide-util-lookup</artifactId>
    67           <version>RELEASE72</version>
    68           <scope>compile</scope>
    69           <type>jar</type>
    70         </dependency>
    71       </dependencies>
    72   </dependencyManagement>
    73   <properties>
    74       <license>COPYING</license>
    75   </properties>
    76 </project>