boot/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 26 Aug 2014 18:13:30 +0200
changeset 838 bdc3d696dd4a
parent 821 0b42a753d727
child 854 ce36930eb669
permissions -rw-r--r--
During the API review process (bug 246133) the reviewers decided that in order to include html4j to NetBeans Platform, we need to stop using org.apidesign namespace and switch to NetBeans one. Repackaging all SPI packages into org.netbeans.html.smthng.spi.
jaroslav@123
     1
<?xml version="1.0"?>
jtulach@215
     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">
jaroslav@123
     3
  <modelVersion>4.0.0</modelVersion>
jaroslav@123
     4
  <parent>
jaroslav@359
     5
    <groupId>org.netbeans.html</groupId>
jaroslav@359
     6
    <artifactId>pom</artifactId>
jtulach@821
     7
    <version>1.0-SNAPSHOT</version>
jaroslav@123
     8
  </parent>
jaroslav@359
     9
  <groupId>org.netbeans.html</groupId>
jaroslav@125
    10
  <artifactId>net.java.html.boot</artifactId>
jtulach@821
    11
  <version>1.0-SNAPSHOT</version>
jaroslav@314
    12
  <packaging>bundle</packaging>
jaroslav@123
    13
  <name>Browser Bootstrap</name>
jaroslav@123
    14
  <url>http://maven.apache.org</url>
jaroslav@123
    15
  <properties>
jaroslav@123
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@838
    17
    <publicPackages>net.java.html.js,net.java.html.boot,org.netbeans.html.boot.spi</publicPackages>
jaroslav@123
    18
  </properties>
jaroslav@166
    19
  <build>
jaroslav@166
    20
      <plugins>
jaroslav@166
    21
          <plugin>
jaroslav@314
    22
              <groupId>org.apache.felix</groupId>
jaroslav@314
    23
              <artifactId>maven-bundle-plugin</artifactId>
jaroslav@323
    24
              <configuration>
jaroslav@323
    25
                  <instructions>
jaroslav@359
    26
                      <Agent-Class>org.netbeans.html.boot.impl.JsAgent</Agent-Class>
jaroslav@530
    27
                      <Premain-Class>org.netbeans.html.boot.impl.JsAgent</Premain-Class>
jaroslav@395
    28
                      <Eclipse-BuddyPolicy>dependent</Eclipse-BuddyPolicy>
jaroslav@323
    29
                  </instructions>
jaroslav@323
    30
              </configuration>
jaroslav@166
    31
          </plugin>
jaroslav@166
    32
      </plugins>
jaroslav@166
    33
  </build>
jaroslav@123
    34
  <dependencies>
jaroslav@123
    35
    <dependency>
jaroslav@123
    36
      <groupId>org.ow2.asm</groupId>
jaroslav@123
    37
      <artifactId>asm</artifactId>
jaroslav@123
    38
      <type>jar</type>
jaroslav@123
    39
    </dependency>
jaroslav@123
    40
    <dependency>
jaroslav@123
    41
      <groupId>org.testng</groupId>
jaroslav@123
    42
      <artifactId>testng</artifactId>
jaroslav@123
    43
      <scope>test</scope>
jaroslav@123
    44
      <type>jar</type>
jaroslav@123
    45
    </dependency>
jaroslav@165
    46
    <dependency>
jaroslav@165
    47
      <groupId>org.netbeans.api</groupId>
jaroslav@165
    48
      <artifactId>org-openide-util-lookup</artifactId>
jaroslav@225
    49
      <scope>provided</scope>
jaroslav@165
    50
    </dependency>
jtulach@569
    51
    <dependency>
jtulach@569
    52
      <groupId>org.netbeans.html</groupId>
jtulach@569
    53
      <artifactId>net.java.html</artifactId>
jtulach@569
    54
      <version>${project.version}</version>
jtulach@569
    55
      <type>jar</type>
jtulach@569
    56
    </dependency>
jaroslav@123
    57
  </dependencies>
jaroslav@263
    58
    <description>Builder to launch your Java/HTML based application.</description>
jaroslav@123
    59
</project>