<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>ch.sourcepond</groupId>
    <artifactId>bundle</artifactId>
    <version>0.4.13</version>
    <relativePath></relativePath>
  </parent>
  <groupId>ch.sourcepond.utils</groupId>
  <artifactId>mdcwrapper-impl</artifactId>
  <version>0.1.3</version>
  <packaging>bundle</packaging>
  <description>Simple facade to wrap executor services into SLF4J MDC aware proxies.</description>
  <url>https://sourcepond.github.io/${repo.project}</url>
  <inceptionYear>2015</inceptionYear>
  <scm>
    <connection>scm:git:${project.scm.url}.git</connection>
    <developerConnection>scm:git:ssh://${repo.domain}/${repo.path}.git</developerConnection>
    <url>https://${repo.domain}/${repo.path}</url>
  </scm>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>ch.sourcepond.utils</groupId>
        <artifactId>mdcwrapper-api</artifactId>
        <version>0.1-SNAPSHOT</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
    </dependency>
    <dependency>
      <groupId>ch.sourcepond.utils</groupId>
      <artifactId>mdcwrapper-api</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Bundle-Activator>ch.sourcepond.utils.mdcwrapper.impl.DefaultMdcWrapper</Bundle-Activator>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
