<?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.7.6</version>
    <relativePath></relativePath>
  </parent>
  <groupId>ch.sourcepond.testing</groupId>
  <artifactId>bundle-test-support</artifactId>
  <version>0.2.1</version>
  <packaging>bundle</packaging>
  <name>Support project for OSGi integration tests</name>
  <description>This project contains all necessary dependencies and helpers to create OSGi integration-tests for bundles published by SourcePond.</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://git@${repo.domain}/${repo.path}.git</developerConnection>
    <url>https://${repo.domain}/${repo.path}</url>
  </scm>
  <ciManagement>
    <system>Jenkins</system>
    <url>${jenkins.baseurl}/job/${project.artifactId}</url>
  </ciManagement>
  <distributionManagement>
    <site>
      <id>www.sourcepond.ch</id>
      <url>${site.distribution.url}/${project.groupId}/${project.artifactId}/${project.version}/</url>
    </site>
  </distributionManagement>
  <properties>
    <repo.project>${project.artifactId}</repo.project>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.javassist</groupId>
      <artifactId>javassist</artifactId>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.tinybundles</groupId>
      <artifactId>tinybundles</artifactId>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.exam</groupId>
      <artifactId>pax-exam</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.exam</groupId>
      <artifactId>pax-exam-container-karaf</artifactId>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
