<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">
  <parent>
    <groupId>org.ow2.util</groupId>
    <artifactId>util-event</artifactId>
    <version>1.0.10</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.ow2.util</groupId>
  <artifactId>util-event-impl</artifactId>
  <packaging>jar</packaging>
  <name>OW2 Util :: Event :: IMPL</name>
  <description>
    Implementation of a generic event module.
  </description>

  <dependencies>
    <dependency>
      <groupId>org.ow2.util</groupId>
      <artifactId>util-event-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    
    <dependency>
      <groupId>org.ow2.util</groupId>
      <artifactId>util-log</artifactId>
      <version>${project.version}</version>
    </dependency>
    
    <!-- Tests -->
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>5.1</version>
      <classifier>jdk15</classifier>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>