boot/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Tue, 07 Jan 2014 08:48:40 +0100
changeset 424 1d637fa8634b
parent 395 c62110222c10
child 425 6729b08befde
child 464 da6c0d295eed
permissions -rw-r--r--
Extending the TCK with checks for proper behavior of JavaScriptBody annotations
     1 <?xml version="1.0"?>
     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>0.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>net.java.html.boot</artifactId>
    11   <version>0.7-SNAPSHOT</version>
    12   <packaging>bundle</packaging>
    13   <name>Browser Bootstrap</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     <publicPackages>net.java.html.js,net.java.html.boot,org.apidesign.html.boot.spi</publicPackages>
    18   </properties>
    19   <build>
    20       <plugins>
    21           <plugin>
    22               <groupId>org.apache.felix</groupId>
    23               <artifactId>maven-bundle-plugin</artifactId>
    24               <configuration>
    25                   <instructions>
    26                       <Agent-Class>org.netbeans.html.boot.impl.JsAgent</Agent-Class>
    27                       <Eclipse-BuddyPolicy>dependent</Eclipse-BuddyPolicy>
    28                   </instructions>
    29               </configuration>
    30           </plugin>
    31          <plugin>
    32             <groupId>org.apache.maven.plugins</groupId>
    33             <artifactId>maven-compiler-plugin</artifactId>
    34             <version>2.3.2</version>
    35             <configuration>
    36                <source>1.6</source>
    37                <target>1.6</target>
    38             </configuration>
    39          </plugin>
    40       </plugins>
    41   </build>
    42   <dependencies>
    43     <dependency>
    44       <groupId>org.ow2.asm</groupId>
    45       <artifactId>asm</artifactId>
    46       <version>4.1</version>
    47       <type>jar</type>
    48     </dependency>
    49     <dependency>
    50       <groupId>org.testng</groupId>
    51       <artifactId>testng</artifactId>
    52       <scope>test</scope>
    53       <type>jar</type>
    54     </dependency>
    55     <dependency>
    56       <groupId>org.netbeans.api</groupId>
    57       <artifactId>org-openide-util-lookup</artifactId>
    58       <scope>provided</scope>
    59     </dependency>
    60   </dependencies>
    61     <description>Builder to launch your Java/HTML based application.</description>
    62 </project>