<?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/xsd/maven-4.0.0.xsd">
  <parent>
    <artifactId>kie-eap-static-modules</artifactId>
    <groupId>org.kie.modules</groupId>
    <version>6.5.0.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>org-reflections</artifactId>
  <name>KIE EAP - org.reflections static module</name>
  <packaging>pom</packaging>

  <properties>
    <module.name>org.reflections</module.name>
    <module.type>static</module.type>
    <module.location>org/reflections</module.location>
    <module.slot>main</module.slot>
  </properties>

  <dependencies>

    <dependency>
      <groupId>org.reflections</groupId>
      <artifactId>reflections</artifactId>
      <type>jar</type>
      <exclusions>
        <!-- The version for com.google.code.findbugs:annotations:jar is not present in parent POM's. -->
        <exclusion>
          <groupId>com.google.code.findbugs</groupId>
          <artifactId>annotations</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  
  </dependencies>

</project>