pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 12 Sep 2013 12:19:53 +0200
branchjdk7-b147
changeset 1280 c1e76ee31360
parent 26 03e4aaa4ef3d
child 92 bf4f95784c62
permissions -rw-r--r--
Need access to thread local class
     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     <module>emul</module>
    13   </modules>
    14   <licenses>
    15       <license>
    16           <name>GPL-2.0</name>
    17           <url>http://opensource.org/licenses/GPL-2.0</url>
    18           <distribution>repo</distribution>
    19       </license>
    20   </licenses>
    21   <organization>
    22       <name>API Design</name>
    23       <url>http://apidesign.org</url>
    24   </organization>
    25   <repositories>
    26       <repository>
    27           <id>netbeans</id>
    28           <name>NetBeans</name>
    29           <url>http://bits.netbeans.org/maven2/</url>
    30       </repository>
    31   </repositories>
    32   <pluginRepositories>
    33       <pluginRepository>
    34           <id>mc-release</id>
    35           <name>Local Maven repository of releases</name>
    36           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    37           <snapshots>
    38               <enabled>false</enabled>
    39           </snapshots>
    40           <releases>
    41               <enabled>true</enabled>
    42           </releases>
    43       </pluginRepository>
    44   </pluginRepositories>
    45   <dependencyManagement>
    46       <dependencies>
    47         <dependency>
    48           <groupId>org.testng</groupId>
    49           <artifactId>testng</artifactId>
    50           <version>6.7</version>
    51           <scope>test</scope>
    52           <exclusions>
    53             <exclusion>
    54               <artifactId>junit</artifactId>
    55               <groupId>junit</groupId>
    56             </exclusion>
    57           </exclusions>
    58         </dependency>
    59         <dependency>
    60           <groupId>org.netbeans.api</groupId>
    61           <artifactId>org-netbeans-modules-classfile</artifactId>
    62           <version>RELEASE72</version>
    63           <type>jar</type>
    64         </dependency>
    65         <dependency>
    66           <groupId>org.netbeans.api</groupId>
    67           <artifactId>org-openide-util-lookup</artifactId>
    68           <version>RELEASE72</version>
    69           <scope>compile</scope>
    70           <type>jar</type>
    71         </dependency>
    72       </dependencies>
    73   </dependencyManagement>
    74   <properties>
    75       <license>COPYING</license>
    76   </properties>
    77 </project>