boot-script/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 24 Oct 2015 21:47:20 +0200
branchdebian
changeset 1000 3dd7476264fd
parent 992 6f1a8b251b7d
child 1002 c70a37a91eb7
permissions -rw-r--r--
Another bunch of dependencies on grizzly
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@992
     7
        <version>1.2.3</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@992
    11
    <version>1.2.3</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>
jtulach@698
    22
              <version>2.4.0</version>
jtulach@698
    23
              <extensions>true</extensions>
jtulach@698
    24
              <configuration>
jtulach@698
    25
                  <instructions>
jtulach@698
    26
                      <Export-Package>${publicPackages}</Export-Package>
jtulach@698
    27
                      <Bundle-SymbolicName>net.java.html.boot.script</Bundle-SymbolicName>
jtulach@698
    28
                  </instructions>
jtulach@698
    29
              </configuration>
jaroslav@675
    30
          </plugin>
jaroslav@676
    31
          <plugin>
jaroslav@676
    32
              <groupId>org.netbeans.html</groupId>
jaroslav@676
    33
              <artifactId>html4j-maven-plugin</artifactId>
jaroslav@676
    34
          </plugin>
jtulach@680
    35
         <plugin>
jtulach@680
    36
            <groupId>org.apache.maven.plugins</groupId>
jtulach@680
    37
            <artifactId>maven-compiler-plugin</artifactId>
jtulach@680
    38
            <version>2.3.2</version>
jtulach@680
    39
            <configuration>
jtulach@680
    40
               <source>1.7</source>
jtulach@680
    41
               <target>1.7</target>
jtulach@680
    42
            </configuration>
jtulach@680
    43
         </plugin>
jaroslav@675
    44
      </plugins>
jaroslav@675
    45
    </build>
jtulach@674
    46
    <dependencies>
jtulach@674
    47
        <dependency>
jaroslav@676
    48
            <groupId>org.netbeans.api</groupId>
jaroslav@676
    49
            <artifactId>org-openide-util-lookup</artifactId>
jaroslav@676
    50
            <scope>provided</scope>
jaroslav@676
    51
        </dependency>
jaroslav@676
    52
        <dependency>
jtulach@674
    53
            <groupId>org.netbeans.html</groupId>
jtulach@674
    54
            <artifactId>net.java.html.boot</artifactId>
jtulach@674
    55
            <version>${project.version}</version>
jtulach@674
    56
            <type>jar</type>
jtulach@674
    57
        </dependency>
jtulach@674
    58
        <dependency>
jtulach@674
    59
            <groupId>org.testng</groupId>
jtulach@674
    60
            <artifactId>testng</artifactId>
jtulach@674
    61
            <scope>test</scope>
jtulach@674
    62
        </dependency>
jtulach@674
    63
        <dependency>
jtulach@674
    64
            <groupId>${project.groupId}</groupId>
jtulach@674
    65
            <artifactId>net.java.html.json.tck</artifactId>
jtulach@674
    66
            <version>${project.version}</version>
jtulach@674
    67
            <scope>test</scope>
jtulach@674
    68
        </dependency>
jaroslav@676
    69
        <dependency>
jaroslav@676
    70
            <groupId>org.netbeans.html</groupId>
jaroslav@676
    71
            <artifactId>ko4j</artifactId>
jaroslav@676
    72
            <version>${project.version}</version>
jaroslav@676
    73
            <scope>test</scope>
jaroslav@676
    74
            <type>jar</type>
jaroslav@676
    75
        </dependency>
jtulach@674
    76
    </dependencies>
jtulach@674
    77
</project>