<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.bndly.common.pdf</groupId>
    <artifactId>org.bndly.common.pdf.pdf</artifactId>
    <version>1.0.2</version>
  </parent>
  <groupId>org.bndly.common.pdf</groupId>
  <artifactId>org.bndly.common.pdf.templates</artifactId>
  <version>1.0.2</version>
  <packaging>bundle</packaging>
  <name>Bndly commons PDF templating</name>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <distributionManagement>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.bndly.common.data</groupId>
      <artifactId>org.bndly.common.data.io</artifactId>
    </dependency>
    <dependency>
      <groupId>org.bndly.common.pdf</groupId>
      <artifactId>org.bndly.common.pdf.document-model</artifactId>
    </dependency>
    <dependency>
      <groupId>org.bndly.common.pdf</groupId>
      <artifactId>org.bndly.common.pdf.document-pdfprinter-mapping</artifactId>
    </dependency>
    <dependency>
      <groupId>org.bndly.common.pdf</groupId>
      <artifactId>org.bndly.common.pdf.pdfprinter</artifactId>
    </dependency>
    <dependency>
      <groupId>org.bndly.common.pdf</groupId>
      <artifactId>org.bndly.common.pdf.stylesheet-model</artifactId>
    </dependency>
    <dependency>
      <groupId>org.bndly.common.templating</groupId>
      <artifactId>org.bndly.common.templating.velocity-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>osgi.cmpn</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-impl</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Bundle-Category>pdf</Bundle-Category>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
