javaquery/api/pom.xml
author Lubomir Nerad <lubomir.nerad@oracle.com>
Tue, 05 Feb 2013 19:14:39 +0100
brancharithmetic
changeset 679 ee595aae8353
parent 554 05224402145d
child 692 d088fc482c65
permissions -rw-r--r--
Added missing semicolons (fixes test compilation failures)
     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>core</artifactId>
    51       <version>0.3-SNAPSHOT</version>
    52       <type>jar</type>
    53     </dependency>
    54     <dependency>
    55       <groupId>org.apidesign.bck2brwsr</groupId>
    56       <artifactId>emul.mini</artifactId>
    57       <version>0.3-SNAPSHOT</version>
    58       <type>jar</type>
    59       <scope>runtime</scope>
    60     </dependency>
    61     <dependency>
    62       <groupId>org.apidesign.bck2brwsr</groupId>
    63       <artifactId>vm4brwsr</artifactId>
    64       <version>0.3-SNAPSHOT</version>
    65       <type>jar</type>
    66       <scope>test</scope>
    67     </dependency>
    68     <dependency>
    69       <groupId>${project.groupId}</groupId>
    70       <artifactId>vmtest</artifactId>
    71       <version>${project.version}</version>
    72       <scope>test</scope>
    73     </dependency>
    74   </dependencies>
    75 </project>