boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 24 Oct 2015 21:47:20 +0200
branchdebian
changeset 1000 3dd7476264fd
parent 992 6f1a8b251b7d
child 1002 c70a37a91eb7
permissions -rw-r--r--
Another bunch of dependencies on grizzly
     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.netbeans.html</groupId>
    71             <artifactId>ko4j</artifactId>
    72             <version>${project.version}</version>
    73             <scope>test</scope>
    74             <type>jar</type>
    75         </dependency>
    76     </dependencies>
    77 </project>