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

  <artifactId>pdf-scientific-shapes</artifactId>
  <name>PDF rendering of clazzes.org's scientific shapes.</name>
  <packaging>bundle</packaging>

  <dependencies>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>pdf-entities</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>pdf-richtext</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>scientific-shapes</artifactId>
    </dependency>
    <dependency>
      <groupId>org.clazzes.sketch</groupId>
      <artifactId>test-sceneries</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
    </dependency>
    <dependency>
	  <groupId>commons-io</groupId>
	  <artifactId>commons-io</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.scientific</Automatic-Module-Name>
            <Private-Package>
                org.clazzes.sketch.pdf.scientific,
                org.clazzes.sketch.pdf.scientific.helpers,
                org.clazzes.sketch.pdf.scientific.i18n,
                org.clazzes.sketch.pdf.scientific.util
            </Private-Package>
            <Import-Package>
                *
            </Import-Package>
            <Export-Package>org.clazzes.sketch.pdf.scientific,
            				org.clazzes.sketch.pdf.scientific.axis,
            				org.clazzes.sketch.pdf.scientific.caption,
            				org.clazzes.sketch.pdf.scientific.helpers,
            				org.clazzes.sketch.pdf.scientific.util
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
