boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 24 Oct 2015 22:07:17 +0200
branchdebian
changeset 1002 c70a37a91eb7
parent 1000 3dd7476264fd
permissions -rw-r--r--
Use the dependency specified by parent pom file
     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               <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.netbeans.html</groupId>
    70             <artifactId>ko4j</artifactId>
    71             <version>${project.version}</version>
    72             <scope>test</scope>
    73             <type>jar</type>
    74         </dependency>
    75     </dependencies>
    76 </project>