<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-entities</artifactId>
  <name>PDF rendering of sketch entities.</name>
  <packaging>bundle</packaging>

  <dependencies>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>serializable-entities</artifactId>
    </dependency>
      <dependency>
      <groupId>org.clazzes.util</groupId>
      <artifactId>aop-util</artifactId>
    </dependency>
  </dependencies>

   <build>
    <plugins>
	  <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Automatic-Module-Name>org.clazzes.sketch.pdf.entities</Automatic-Module-Name>
            <Private-Package>
                org.clazzes.sketch.pdf.entities,
                org.clazzes.sketch.pdf.entities.impl,
                org.clazzes.sketch.pdf.entities.i18n,
                org.clazzes.sketch.pdf.entities.helpers,
                org.clazzes.sketch.pdf.entities.resources
            </Private-Package>
            <Import-Package>
                *
            </Import-Package>
            <Export-Package>
                org.clazzes.sketch.pdf.entities,
                org.clazzes.sketch.pdf.entities.helpers
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
