javaquery/api/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 09 Nov 2012 11:47:00 +0100
changeset 140 590958fcb7d7
child 159 d0aad97dfd2e
permissions -rw-r--r--
Moving the htmlpage API into a submodule in preparation of adding in an example of its usage
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign.bck2brwsr</groupId>
     7     <artifactId>javaquery</artifactId>
     8     <version>1.0-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>javaquery.api</artifactId>
    12   <version>1.0-SNAPSHOT</version>
    13   <name>JavaQuery API</name>
    14   <url>http://maven.apache.org</url>
    15     <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <dependencies>
    19     <dependency>
    20       <groupId>org.testng</groupId>
    21       <artifactId>testng</artifactId>
    22       <scope>test</scope>
    23       <exclusions>
    24         <exclusion>
    25           <artifactId>junit</artifactId>
    26           <groupId>junit</groupId>
    27         </exclusion>
    28       </exclusions>
    29     </dependency>
    30     <dependency>
    31       <groupId>org.netbeans.api</groupId>
    32       <artifactId>org-openide-util-lookup</artifactId>
    33     </dependency>
    34     <dependency>
    35       <groupId>org.apidesign.bck2brwsr</groupId>
    36       <artifactId>core</artifactId>
    37       <version>1.0-SNAPSHOT</version>
    38       <type>jar</type>
    39     </dependency>
    40     <dependency>
    41       <groupId>org.apidesign.bck2brwsr</groupId>
    42       <artifactId>emul</artifactId>
    43       <version>1.0-SNAPSHOT</version>
    44       <type>jar</type>
    45       <scope>runtime</scope>
    46     </dependency>
    47     <dependency>
    48       <groupId>org.apidesign.bck2brwsr</groupId>
    49       <artifactId>vm4brwsr</artifactId>
    50       <version>0.1-SNAPSHOT</version>
    51       <type>jar</type>
    52       <scope>test</scope>
    53     </dependency>
    54   </dependencies>
    55 </project>