<?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.4.0.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>com-fasterxml-jackson</artifactId>
  <name>KIE EAP - com.fasterxml.jackson module</name>
  <packaging>pom</packaging>

  <properties>
    <module.name>com.fasterxml.jackson</module.name>
    <module.type>static</module.type>
    <module.location>com/fasterxml/jackson</module.location>
    <module.slot>main</module.slot>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <type>jar</type>
      <exclusions>
        <!-- This artifact is not present in parent POM dependency management section,
        trying to avoid it. -->
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <type>jar</type>
    </dependency>
  </dependencies>
</project>