boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 21 Jul 2016 11:21:58 +0200
changeset 1105 907bcc5dbb00
parent 1068 463510dbc24b
permissions -rw-r--r--
Documenting the Truffle based presenter
     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>2.0-SNAPSHOT</version>
     8     </parent>
     9     <name>Presenter via javax.script</name>
    10     <artifactId>net.java.html.boot.script</artifactId>
    11     <version>2.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               <extensions>true</extensions>
    23               <configuration>
    24                   <instructions>
    25                       <Export-Package>${publicPackages}</Export-Package>
    26                       <Bundle-SymbolicName>net.java.html.boot.script</Bundle-SymbolicName>
    27                   </instructions>
    28               </configuration>
    29           </plugin>
    30           <plugin>
    31               <groupId>org.netbeans.html</groupId>
    32               <artifactId>html4j-maven-plugin</artifactId>
    33           </plugin>
    34          <plugin>
    35             <groupId>org.apache.maven.plugins</groupId>
    36             <artifactId>maven-compiler-plugin</artifactId>
    37             <version>2.3.2</version>
    38             <configuration>
    39                <source>1.7</source>
    40                <target>1.7</target>
    41             </configuration>
    42          </plugin>
    43       </plugins>
    44     </build>
    45     <dependencies>
    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.netbeans.html</groupId>
    53             <artifactId>net.java.html.boot</artifactId>
    54             <version>${project.version}</version>
    55             <type>jar</type>
    56         </dependency>
    57         <dependency>
    58             <groupId>org.testng</groupId>
    59             <artifactId>testng</artifactId>
    60             <scope>test</scope>
    61         </dependency>
    62         <dependency>
    63             <groupId>${project.groupId}</groupId>
    64             <artifactId>net.java.html.json.tck</artifactId>
    65             <version>${project.version}</version>
    66             <scope>test</scope>
    67         </dependency>
    68         <dependency>
    69             <groupId>org.glassfish.grizzly</groupId>
    70             <artifactId>grizzly-http-server</artifactId>
    71             <version>${grizzly.version}</version>
    72             <scope>test</scope>
    73         </dependency>
    74         <dependency>
    75             <groupId>org.glassfish.grizzly</groupId>
    76             <artifactId>grizzly-websockets-server</artifactId>
    77             <version>${grizzly.version}</version>
    78             <scope>test</scope>
    79             <type>jar</type>
    80         </dependency>
    81         <dependency>
    82             <groupId>org.glassfish.grizzly</groupId>
    83             <artifactId>grizzly-http-servlet</artifactId>
    84             <version>${grizzly.version}</version>
    85             <scope>test</scope>
    86         </dependency>    
    87         <dependency>
    88             <groupId>javax.servlet</groupId>
    89             <artifactId>javax.servlet-api</artifactId>
    90             <scope>test</scope>
    91             <version>3.1.0</version>
    92         </dependency>
    93         <dependency>
    94             <groupId>org.netbeans.html</groupId>
    95             <artifactId>ko4j</artifactId>
    96             <version>${project.version}</version>
    97             <scope>test</scope>
    98             <type>jar</type>
    99         </dependency>
   100         <dependency>
   101             <groupId>${project.groupId}</groupId>
   102             <artifactId>ko-ws-tyrus</artifactId>
   103             <version>${project.version}</version>
   104             <scope>test</scope>
   105             <type>jar</type>
   106         </dependency>
   107     </dependencies>
   108 </project>