<?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.7.7</version>
  </parent>
  <artifactId>bundle-test</artifactId>
  <packaging>pom</packaging>
  <name>Base POM for testing projects of associated OSGi-bundles</name>
  <description>This is the parent POM for all testing projects of associated OSGi-bundles published by SourcePond.</description>
  <inceptionYear>2015</inceptionYear>
  <properties>
    <bundle-test-support.version>0.1.11</bundle-test-support.version>
    <pax-url.version>2.5.2</pax-url.version>
    <github.site.path>${project.version}/${project.artifactId}</github.site.path>
    <org.apache.felix.framework.version>5.6.2</org.apache.felix.framework.version>
    <biz.aQute.bndlib.version>3.3.0</biz.aQute.bndlib.version>
    <net.bytebuddy.version>1.6.9</net.bytebuddy.version>
    <depends-maven-plugin.version>1.3.1</depends-maven-plugin.version>
    <repo.project>${project.parent.artifactId}</repo.project>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.apache.felix</groupId>
        <artifactId>org.apache.felix.framework</artifactId>
        <version>${org.apache.felix.framework.version}</version>
        <scope>runtime</scope>
      </dependency>
      <dependency>
        <groupId>biz.aQute.bnd</groupId>
        <artifactId>biz.aQute.bndlib</artifactId>
        <version>${biz.aQute.bndlib.version}</version>
        <scope>runtime</scope>
      </dependency>
      <dependency>
        <groupId>org.apache.karaf</groupId>
        <artifactId>org.apache.karaf.exception</artifactId>
        <version>${karaf.version}</version>
        <scope>runtime</scope>
      </dependency>
      <dependency>
        <groupId>ch.sourcepond.testing</groupId>
        <artifactId>bundle-test-support</artifactId>
        <version>${bundle-test-support.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.ops4j.pax.url</groupId>
        <artifactId>pax-url-aether</artifactId>
        <version>${pax-url.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>net.bytebuddy</groupId>
        <artifactId>byte-buddy</artifactId>
        <version>${net.bytebuddy.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>net.bytebuddy</groupId>
        <artifactId>byte-buddy-agent</artifactId>
        <version>${net.bytebuddy.version}</version>
        <scope>test</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.ops4j.pax.exam</groupId>
      <artifactId>pax-exam</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.exam</groupId>
      <artifactId>pax-exam-junit4</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.exam</groupId>
      <artifactId>pax-exam-container-karaf</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.url</groupId>
      <artifactId>pax-url-aether</artifactId>
    </dependency>
  </dependencies>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.servicemix.tooling</groupId>
          <artifactId>depends-maven-plugin</artifactId>
          <version>${depends-maven-plugin.version}</version>
          <executions>
            <execution>
              <id>generate-depends-file</id>
              <goals>
                <goal>generate-depends-file</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.apache.servicemix.tooling</groupId>
        <artifactId>depends-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
