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