ko-bck2brwsr/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 01 May 2013 07:20:06 +0200
changeset 1195 0930803c77d2
parent 1193 93e8fc67b2b5
parent 1194 3213724a4996
child 1197 51bcde3f337e
permissions -rw-r--r--
Merging in recent updates needed to produce release-0.1
     1 <?xml version="1.0"?>
     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   <parent>
     5     <groupId>org.apidesign</groupId>
     6     <artifactId>html</artifactId>
     7     <version>0.2-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.html</groupId>
    10   <artifactId>ko-bck2brwsr</artifactId>
    11   <version>0.2-SNAPSHOT</version>
    12   <name>Knockout.b2b</name>
    13   <url>http://maven.apache.org</url>
    14   <build>
    15       <plugins>
    16           <plugin>
    17               <groupId>org.apache.maven.plugins</groupId>
    18               <artifactId>maven-compiler-plugin</artifactId>
    19               <version>2.3.2</version>
    20               <configuration>
    21                   <source>1.7</source>
    22                   <target>1.7</target>
    23               </configuration>
    24           </plugin>
    25           <plugin>
    26               <groupId>org.apache.maven.plugins</groupId>
    27               <artifactId>maven-javadoc-plugin</artifactId>
    28               <configuration>
    29                   <skip>false</skip>
    30               </configuration>
    31           </plugin>
    32       </plugins>
    33   </build>
    34   <dependencies>
    35     <dependency>
    36       <groupId>org.testng</groupId>
    37       <artifactId>testng</artifactId>
    38       <scope>test</scope>
    39       <exclusions>
    40         <exclusion>
    41           <artifactId>junit</artifactId>
    42           <groupId>junit</groupId>
    43         </exclusion>
    44       </exclusions>
    45     </dependency>
    46     <dependency>
    47       <groupId>org.netbeans.api</groupId>
    48       <artifactId>org-openide-util-lookup</artifactId>
    49       <scope>provided</scope>
    50     </dependency>
    51     <dependency>
    52       <groupId>org.apidesign.bck2brwsr</groupId>
    53       <artifactId>emul</artifactId>
    54       <version>${bck2brwsr.version}</version>
    55       <classifier>rt</classifier>
    56       <type>jar</type>
    57       <scope>compile</scope>
    58     </dependency>
    59     <dependency>
    60       <groupId>org.apidesign.bck2brwsr</groupId>
    61       <artifactId>vm4brwsr</artifactId>
    62       <version>${bck2brwsr.version}</version>
    63       <type>jar</type>
    64       <scope>test</scope>
    65     </dependency>
    66     <dependency>
    67       <groupId>org.apidesign.bck2brwsr</groupId>
    68       <artifactId>vmtest</artifactId>
    69       <version>${bck2brwsr.version}</version>
    70       <scope>test</scope>
    71     </dependency>
    72     <dependency>
    73       <groupId>org.apidesign.bck2brwsr</groupId>
    74       <artifactId>launcher.http</artifactId>
    75       <version>${bck2brwsr.version}</version>
    76       <scope>test</scope>
    77     </dependency>
    78     <dependency>
    79       <groupId>org.apidesign.html</groupId>
    80       <artifactId>net.java.html.json</artifactId>
    81       <version>0.2-SNAPSHOT</version>
    82     </dependency>
    83     <dependency>
    84       <groupId>org.apidesign.html</groupId>
    85       <artifactId>net.java.html.json.tck</artifactId>
    86       <version>0.2-SNAPSHOT</version>
    87       <scope>test</scope>
    88     </dependency>
    89     <dependency>
    90       <groupId>org.apidesign.bck2brwsr</groupId>
    91       <artifactId>core</artifactId>
    92       <version>${bck2brwsr.version}</version>
    93       <type>jar</type>
    94     </dependency>
    95   </dependencies>
    96 </project>