pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 03 Oct 2012 08:19:44 -0700
branchemul
changeset 92 bf4f95784c62
parent 49 0a115f1c6f3c
parent 91 f3b685bd7243
child 106 346633cd13d6
permissions -rw-r--r--
Merging the strings work into the emulation attempt
     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     <module>core</module>
    14   </modules>
    15   <licenses>
    16       <license>
    17           <name>GPL-2.0</name>
    18           <url>http://opensource.org/licenses/GPL-2.0</url>
    19           <distribution>repo</distribution>
    20       </license>
    21   </licenses>
    22   <organization>
    23       <name>API Design</name>
    24       <url>http://apidesign.org</url>
    25   </organization>
    26   <repositories>
    27       <repository>
    28           <id>netbeans</id>
    29           <name>NetBeans</name>
    30           <url>http://bits.netbeans.org/maven2/</url>
    31       </repository>
    32   </repositories>
    33   <pluginRepositories>
    34       <pluginRepository>
    35           <id>mc-release</id>
    36           <name>Local Maven repository of releases</name>
    37           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    38           <snapshots>
    39               <enabled>false</enabled>
    40           </snapshots>
    41           <releases>
    42               <enabled>true</enabled>
    43           </releases>
    44       </pluginRepository>
    45   </pluginRepositories>
    46   <dependencyManagement>
    47       <dependencies>
    48         <dependency>
    49           <groupId>org.testng</groupId>
    50           <artifactId>testng</artifactId>
    51           <version>6.7</version>
    52           <scope>test</scope>
    53           <exclusions>
    54             <exclusion>
    55               <artifactId>junit</artifactId>
    56               <groupId>junit</groupId>
    57             </exclusion>
    58           </exclusions>
    59         </dependency>
    60         <dependency>
    61           <groupId>org.netbeans.api</groupId>
    62           <artifactId>org-netbeans-modules-classfile</artifactId>
    63           <version>RELEASE72</version>
    64           <type>jar</type>
    65         </dependency>
    66         <dependency>
    67           <groupId>org.netbeans.api</groupId>
    68           <artifactId>org-openide-util-lookup</artifactId>
    69           <version>RELEASE72</version>
    70           <scope>compile</scope>
    71           <type>jar</type>
    72         </dependency>
    73       </dependencies>
    74   </dependencyManagement>
    75   <properties>
    76       <license>COPYING</license>
    77   </properties>
    78 </project>