boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 04 Jun 2014 10:28:17 +0200
branchenvjs
changeset 680 9fa36fee05e5
parent 676 c2d1bf0e7edf
child 690 5d2f872b09fa
permissions -rw-r--r--
Using nashorn specific env.js we are down to 21 test failures in KnockoutTCK
     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     <parent>
     5         <groupId>org.netbeans.html</groupId>
     6         <artifactId>pom</artifactId>
     7         <version>1.0-SNAPSHOT</version>
     8     </parent>
     9     <name>Presenter via javax.script</name>
    10     <artifactId>net.java.html.boot.script</artifactId>
    11     <version>1.0-SNAPSHOT</version>
    12     <packaging>bundle</packaging>
    13     <properties>
    14         <netbeans.compile.on.save>NONE</netbeans.compile.on.save>
    15         <publicPackages>net.java.html.boot.script</publicPackages>
    16     </properties>
    17     <build>
    18       <plugins>
    19           <plugin>
    20               <groupId>org.apache.felix</groupId>
    21               <artifactId>maven-bundle-plugin</artifactId>
    22           </plugin>
    23           <plugin>
    24               <groupId>org.netbeans.html</groupId>
    25               <artifactId>html4j-maven-plugin</artifactId>
    26           </plugin>
    27          <plugin>
    28             <groupId>org.apache.maven.plugins</groupId>
    29             <artifactId>maven-compiler-plugin</artifactId>
    30             <version>2.3.2</version>
    31             <configuration>
    32                <source>1.7</source>
    33                <target>1.7</target>
    34             </configuration>
    35          </plugin>
    36       </plugins>
    37     </build>
    38     <dependencies>
    39         <dependency>
    40             <groupId>org.netbeans.api</groupId>
    41             <artifactId>org-openide-util-lookup</artifactId>
    42             <scope>provided</scope>
    43         </dependency>
    44         <dependency>
    45             <groupId>org.netbeans.html</groupId>
    46             <artifactId>net.java.html.boot</artifactId>
    47             <version>${project.version}</version>
    48             <type>jar</type>
    49         </dependency>
    50         <dependency>
    51             <groupId>org.testng</groupId>
    52             <artifactId>testng</artifactId>
    53             <scope>test</scope>
    54         </dependency>
    55         <dependency>
    56             <groupId>${project.groupId}</groupId>
    57             <artifactId>net.java.html.json.tck</artifactId>
    58             <version>${project.version}</version>
    59             <scope>test</scope>
    60         </dependency>
    61         <dependency>
    62             <groupId>org.glassfish.grizzly</groupId>
    63             <artifactId>grizzly-http-server</artifactId>
    64             <version>${grizzly.version}</version>
    65             <scope>test</scope>
    66         </dependency>
    67         <dependency>
    68             <groupId>org.glassfish.grizzly</groupId>
    69             <artifactId>grizzly-websockets-server</artifactId>
    70             <version>${grizzly.version}</version>
    71             <scope>test</scope>
    72             <type>jar</type>
    73         </dependency>
    74         <dependency>
    75             <groupId>org.glassfish.grizzly</groupId>
    76             <artifactId>grizzly-http-servlet</artifactId>
    77             <version>${grizzly.version}</version>
    78             <scope>test</scope>
    79         </dependency>    
    80         <dependency>
    81             <groupId>javax.servlet</groupId>
    82             <artifactId>javax.servlet-api</artifactId>
    83             <scope>test</scope>
    84             <version>3.1.0</version>
    85         </dependency>
    86         <dependency>
    87             <groupId>org.netbeans.html</groupId>
    88             <artifactId>ko4j</artifactId>
    89             <version>${project.version}</version>
    90             <scope>test</scope>
    91             <type>jar</type>
    92         </dependency>
    93     </dependencies>
    94 </project>