<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">
  <modelVersion>4.0.0</modelVersion>
  
  <parent>
    <groupId>org.clazzes.sketch</groupId>
    <artifactId>pdf-main</artifactId>
    <version>1.9.4</version>
    <relativePath>..</relativePath>
  </parent>

  <artifactId>pdf-richtext</artifactId>
  <name>PDF rendering of richtext entities</name>
  <packaging>bundle</packaging>
  
  <dependencies>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>richtext</artifactId>
    </dependency>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>serializable-entities</artifactId>
    </dependency>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>pdf-entities</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
  
   <build>
    <plugins>
	  <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Automatic-Module-Name>org.clazzes.sketch.pdf.richtext</Automatic-Module-Name>
            <Private-Package>
                org.clazzes.sketch.pdf.richtext
            </Private-Package>
            <Import-Package>
                *
            </Import-Package>
            <Export-Package>
                org.clazzes.sketch.pdf.richtext
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
