boot-script/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Wed, 04 Jun 2014 06:36:44 +0200
changeset 675 fad65c387592
parent 674 a61fd3f48997
child 676 c2d1bf0e7edf
permissions -rw-r--r--
Turning into regular OSGi bundle
jtulach@674
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@674
     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">
jtulach@674
     3
    <modelVersion>4.0.0</modelVersion>
jtulach@674
     4
    <parent>
jtulach@674
     5
        <groupId>org.netbeans.html</groupId>
jtulach@674
     6
        <artifactId>pom</artifactId>
jtulach@674
     7
        <version>1.0-SNAPSHOT</version>
jtulach@674
     8
    </parent>
jtulach@674
     9
    <name>Presenter via javax.script</name>
jtulach@674
    10
    <artifactId>net.java.html.boot.script</artifactId>
jtulach@674
    11
    <version>1.0-SNAPSHOT</version>
jaroslav@675
    12
    <packaging>bundle</packaging>
jtulach@674
    13
    <properties>
jtulach@674
    14
        <netbeans.compile.on.save>NONE</netbeans.compile.on.save>
jaroslav@675
    15
        <publicPackages>net.java.html.boot.script</publicPackages>
jtulach@674
    16
    </properties>
jaroslav@675
    17
    <build>
jaroslav@675
    18
      <plugins>
jaroslav@675
    19
          <plugin>
jaroslav@675
    20
              <groupId>org.apache.felix</groupId>
jaroslav@675
    21
              <artifactId>maven-bundle-plugin</artifactId>
jaroslav@675
    22
          </plugin>
jaroslav@675
    23
      </plugins>
jaroslav@675
    24
    </build>
jtulach@674
    25
    <dependencies>
jtulach@674
    26
        <dependency>
jtulach@674
    27
            <groupId>org.netbeans.html</groupId>
jtulach@674
    28
            <artifactId>net.java.html.boot</artifactId>
jtulach@674
    29
            <version>${project.version}</version>
jtulach@674
    30
            <type>jar</type>
jtulach@674
    31
        </dependency>
jtulach@674
    32
        <dependency>
jtulach@674
    33
            <groupId>org.testng</groupId>
jtulach@674
    34
            <artifactId>testng</artifactId>
jtulach@674
    35
            <scope>test</scope>
jtulach@674
    36
        </dependency>
jtulach@674
    37
        <dependency>
jtulach@674
    38
            <groupId>org.webjars</groupId>
jtulach@674
    39
            <artifactId>envjs</artifactId>
jtulach@674
    40
            <version>1.2</version>
jtulach@674
    41
            <scope>test</scope>
jtulach@674
    42
        </dependency>
jtulach@674
    43
        <dependency>
jtulach@674
    44
            <groupId>${project.groupId}</groupId>
jtulach@674
    45
            <artifactId>net.java.html.json.tck</artifactId>
jtulach@674
    46
            <version>${project.version}</version>
jtulach@674
    47
            <scope>test</scope>
jtulach@674
    48
        </dependency>
jtulach@674
    49
    </dependencies>
jtulach@674
    50
</project>