boot/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 06 Nov 2013 15:15:54 +0100
changeset 323 86aabecda7a3
parent 322 4a93f2679691
child 332 386429032402
child 359 6b23a639bdb5
permissions -rw-r--r--
Introducing Agent-Class to allow java.lang.instrument-like transforms of the @JavaScriptBody annotation
     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.apidesign</groupId>
     6     <artifactId>html</artifactId>
     7     <version>0.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.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.apidesign.html.boot.impl.JsAgent</Agent-Class>
    27                   </instructions>
    28               </configuration>
    29           </plugin>
    30          <plugin>
    31             <groupId>org.apache.maven.plugins</groupId>
    32             <artifactId>maven-compiler-plugin</artifactId>
    33             <version>2.3.2</version>
    34             <configuration>
    35                <source>1.7</source>
    36                <target>1.7</target>
    37             </configuration>
    38          </plugin>
    39       </plugins>
    40   </build>
    41   <dependencies>
    42     <dependency>
    43       <groupId>org.ow2.asm</groupId>
    44       <artifactId>asm</artifactId>
    45       <version>4.1</version>
    46       <type>jar</type>
    47     </dependency>
    48     <dependency>
    49       <groupId>org.testng</groupId>
    50       <artifactId>testng</artifactId>
    51       <scope>test</scope>
    52       <type>jar</type>
    53     </dependency>
    54     <dependency>
    55       <groupId>org.netbeans.api</groupId>
    56       <artifactId>org-openide-util-lookup</artifactId>
    57       <scope>provided</scope>
    58     </dependency>
    59   </dependencies>
    60     <description>Builder to launch your Java/HTML based application.</description>
    61 </project>