javaquery/api/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 13:07:22 +0100
branchemul
changeset 695 dbcd1a21f3f8
parent 621 6daa39b17563
child 769 0c0fe97fe0c7
child 798 c8f432905e66
permissions -rw-r--r--
Merging in long arithmetic, otherwise the zip support won't work
     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>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>javaquery.api</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>JavaQuery API</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.3.2</version>
    21                 <configuration>
    22                     <source>1.6</source>
    23                     <target>1.6</target>
    24                 </configuration>
    25             </plugin>
    26         </plugins>
    27     </build>
    28     <properties>
    29     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    30   </properties>
    31   <dependencies>
    32     <dependency>
    33       <groupId>org.testng</groupId>
    34       <artifactId>testng</artifactId>
    35       <scope>test</scope>
    36       <exclusions>
    37         <exclusion>
    38           <artifactId>junit</artifactId>
    39           <groupId>junit</groupId>
    40         </exclusion>
    41       </exclusions>
    42     </dependency>
    43     <dependency>
    44       <groupId>org.netbeans.api</groupId>
    45       <artifactId>org-openide-util-lookup</artifactId>
    46       <scope>provided</scope>
    47     </dependency>
    48     <dependency>
    49       <groupId>org.apidesign.bck2brwsr</groupId>
    50       <artifactId>emul</artifactId>
    51       <version>${project.version}</version>
    52       <classifier>rt</classifier>
    53       <type>jar</type>
    54       <scope>compile</scope>
    55     </dependency>
    56     <dependency>
    57       <groupId>org.apidesign.bck2brwsr</groupId>
    58       <artifactId>vm4brwsr</artifactId>
    59       <version>${project.version}</version>
    60       <type>jar</type>
    61       <scope>test</scope>
    62     </dependency>
    63     <dependency>
    64       <groupId>${project.groupId}</groupId>
    65       <artifactId>vmtest</artifactId>
    66       <version>${project.version}</version>
    67       <scope>test</scope>
    68     </dependency>
    69   </dependencies>
    70 </project>