<?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.utils</groupId>
    <artifactId>podescoin</artifactId>
    <version>2.0.4</version>
  </parent>
  <artifactId>podescoin-testing</artifactId>
  <packaging>bundle</packaging>
  <description>Testing infrastructure which makes it simple for client bundles to test their PodesCoin enabled classes.</description>
  <ciManagement>
    <system>Jenkins</system>
    <url>${jenkins.baseurl}/job/${project.parent.artifactId}</url>
  </ciManagement>
  <distributionManagement>
    <site>
      <id>www.sourcepond.ch</id>
      <url>${site.distribution.url}/${project.groupId}/${project.artifactId}/${project.version}/</url>
    </site>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.enterprise</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-all</artifactId>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>ch.sourcepond.utils</groupId>
      <artifactId>podescoin-api</artifactId>
      <version>2.0.4</version>
    </dependency>
    <dependency>
      <groupId>ch.sourcepond.utils</groupId>
      <artifactId>podescoin-core</artifactId>
      <version>2.0.4</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <id>analyze</id>
            <phase>none</phase>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.karaf.tooling</groupId>
        <artifactId>karaf-maven-plugin</artifactId>
        <configuration>
          <useVersionRange>true</useVersionRange>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
