context/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 21 Sep 2015 21:19:13 +0200
changeset 992 6f1a8b251b7d
parent 989 af449e1eaedc
child 1005 c7f11fbd5475
permissions -rw-r--r--
[maven-release-plugin] prepare release release-1.2.3
jaroslav@110
     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@110
     3
  <modelVersion>4.0.0</modelVersion>
jaroslav@110
     4
  <parent>
jaroslav@359
     5
    <groupId>org.netbeans.html</groupId>
jaroslav@359
     6
    <artifactId>pom</artifactId>
jtulach@992
     7
    <version>1.2.3</version>
jaroslav@110
     8
  </parent>
jaroslav@359
     9
  <groupId>org.netbeans.html</groupId>
jaroslav@110
    10
  <artifactId>net.java.html</artifactId>
jtulach@992
    11
  <version>1.2.3</version>
jaroslav@314
    12
  <packaging>bundle</packaging>
jaroslav@110
    13
  <name>HTML Context</name>
jaroslav@110
    14
  <url>http://maven.apache.org</url>
jaroslav@110
    15
  <properties>
jaroslav@110
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@838
    17
    <publicPackages>net.java.html,org.netbeans.html.context.spi</publicPackages>
jaroslav@110
    18
  </properties>
jaroslav@167
    19
  <build>
jaroslav@167
    20
      <plugins>
jaroslav@167
    21
          <plugin>
jaroslav@314
    22
              <groupId>org.apache.felix</groupId>
jaroslav@314
    23
              <artifactId>maven-bundle-plugin</artifactId>
jaroslav@324
    24
              <configuration>
jaroslav@324
    25
                  <instructions>
jaroslav@324
    26
                      <Eclipse-BuddyPolicy>dependent</Eclipse-BuddyPolicy>
jaroslav@324
    27
                  </instructions>
jaroslav@324
    28
              </configuration>
jaroslav@167
    29
          </plugin>
jaroslav@167
    30
      </plugins>
jaroslav@167
    31
  </build>
jaroslav@110
    32
  <dependencies>
jtulach@569
    33
    <dependency>
jtulach@569
    34
      <groupId>org.testng</groupId>
jtulach@569
    35
      <artifactId>testng</artifactId>
jtulach@569
    36
      <scope>test</scope>
jtulach@569
    37
    </dependency>
jtulach@927
    38
    <dependency>
jtulach@927
    39
      <groupId>org.netbeans.api</groupId>
jtulach@927
    40
      <artifactId>org-openide-util-lookup</artifactId>
jtulach@927
    41
      <scope>test</scope>
jtulach@927
    42
      <type>jar</type>
jtulach@927
    43
    </dependency>
jaroslav@110
    44
  </dependencies>
jaroslav@263
    45
    <description>Representation of an HTML page context a Java program operates in.</description>
jaroslav@110
    46
</project>