<?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>build</artifactId>
    <version>0.4.13</version>
  </parent>
  <artifactId>bundle</artifactId>
  <version>0.4.13</version>
  <packaging>pom</packaging>
  <name>Base POM for OSGi-bundles</name>
  <description>This is the parent POM for all OSGi-bundles published by SourcePond.</description>
  <inceptionYear>2015</inceptionYear>
  <modules>
    <module>ds-bundle</module>
    <module>cdi-bundle</module>
  </modules>
  <properties>
    <maven-bundle-plugin.version>3.0.1</maven-bundle-plugin.version>
    <repo.project>${project.parent.artifactId}</repo.project>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.osgi</groupId>
        <artifactId>osgi.cmpn</artifactId>
        <version>${org.osgi.core.version}</version>
        <scope>provided</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.felix</groupId>
          <artifactId>maven-bundle-plugin</artifactId>
          <version>${maven-bundle-plugin.version}</version>
          <extensions>true</extensions>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>
