<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>

  <packaging>jar</packaging>
  
  <parent>
    <groupId>org.cache2k</groupId>
    <artifactId>cache2k-parent</artifactId>
    <version>1.0.1.Final</version>
  </parent>

  <description>
    Defines different categories (SlowTests, FastTests, ...) we can specify for unit testing.
    Added as test dependency, otherwise we cannot specify the category in aggregator builds / on top level.
    This serves also as a test scope BOM for transitive dependencies to JUnit and hamcrest.
  </description>

  <artifactId>cache2k-testing</artifactId>
  <version>1.0.1.Final</version>
  <name>cache2k testing</name>

  <dependencies>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>
