<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <groupId>cobertura</groupId>
  <artifactId>cobertura-runtime</artifactId>
  <version>1.7</version>
  <packaging>pom</packaging>
  <description>Cobertura fake artifact to prevent unneeded dependencies at runtime</description>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>cobertura</artifactId>
      <version>${project.version}</version>
      <exclusions>
        <exclusion>
          <groupId>oro</groupId>
          <artifactId>oro</artifactId>
        </exclusion>
        <exclusion>
          <groupId>asm</groupId>
          <artifactId>asm</artifactId>
        </exclusion>
        <exclusion>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javancss</groupId>
          <artifactId>ccl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javancss</groupId>
          <artifactId>javancss</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>

</project>