boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 21 Sep 2015 21:19:13 +0200
changeset 992 6f1a8b251b7d
parent 989 af449e1eaedc
child 1000 3dd7476264fd
child 1005 c7f11fbd5475
permissions -rw-r--r--
[maven-release-plugin] prepare release release-1.2.3
     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.2.3</version>
     8     </parent>
     9     <name>Presenter via javax.script</name>
    10     <artifactId>net.java.html.boot.script</artifactId>
    11     <version>1.2.3</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               <version>2.4.0</version>
    23               <extensions>true</extensions>
    24               <configuration>
    25                   <instructions>
    26                       <Export-Package>${publicPackages}</Export-Package>
    27                       <Bundle-SymbolicName>net.java.html.boot.script</Bundle-SymbolicName>
    28                   </instructions>
    29               </configuration>
    30           </plugin>
    31           <plugin>
    32               <groupId>org.netbeans.html</groupId>
    33               <artifactId>html4j-maven-plugin</artifactId>
    34           </plugin>
    35          <plugin>
    36             <groupId>org.apache.maven.plugins</groupId>
    37             <artifactId>maven-compiler-plugin</artifactId>
    38             <version>2.3.2</version>
    39             <configuration>
    40                <source>1.7</source>
    41                <target>1.7</target>
    42             </configuration>
    43          </plugin>
    44       </plugins>
    45     </build>
    46     <dependencies>
    47         <dependency>
    48             <groupId>org.netbeans.api</groupId>
    49             <artifactId>org-openide-util-lookup</artifactId>
    50             <scope>provided</scope>
    51         </dependency>
    52         <dependency>
    53             <groupId>org.netbeans.html</groupId>
    54             <artifactId>net.java.html.boot</artifactId>
    55             <version>${project.version}</version>
    56             <type>jar</type>
    57         </dependency>
    58         <dependency>
    59             <groupId>org.testng</groupId>
    60             <artifactId>testng</artifactId>
    61             <scope>test</scope>
    62         </dependency>
    63         <dependency>
    64             <groupId>${project.groupId}</groupId>
    65             <artifactId>net.java.html.json.tck</artifactId>
    66             <version>${project.version}</version>
    67             <scope>test</scope>
    68         </dependency>
    69         <dependency>
    70             <groupId>org.glassfish.grizzly</groupId>
    71             <artifactId>grizzly-http-server</artifactId>
    72             <version>${grizzly.version}</version>
    73             <scope>test</scope>
    74         </dependency>
    75         <dependency>
    76             <groupId>org.glassfish.grizzly</groupId>
    77             <artifactId>grizzly-websockets-server</artifactId>
    78             <version>${grizzly.version}</version>
    79             <scope>test</scope>
    80             <type>jar</type>
    81         </dependency>
    82         <dependency>
    83             <groupId>org.glassfish.grizzly</groupId>
    84             <artifactId>grizzly-http-servlet</artifactId>
    85             <version>${grizzly.version}</version>
    86             <scope>test</scope>
    87         </dependency>    
    88         <dependency>
    89             <groupId>javax.servlet</groupId>
    90             <artifactId>javax.servlet-api</artifactId>
    91             <scope>test</scope>
    92             <version>3.1.0</version>
    93         </dependency>
    94         <dependency>
    95             <groupId>org.netbeans.html</groupId>
    96             <artifactId>ko4j</artifactId>
    97             <version>${project.version}</version>
    98             <scope>test</scope>
    99             <type>jar</type>
   100         </dependency>
   101         <dependency>
   102             <groupId>${project.groupId}</groupId>
   103             <artifactId>ko-ws-tyrus</artifactId>
   104             <version>${project.version}</version>
   105             <scope>test</scope>
   106             <type>jar</type>
   107         </dependency>
   108     </dependencies>
   109 </project>