<?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>
    <parent>
        <groupId>org.drools</groupId>
        <artifactId>drools-wiring</artifactId>
        <version>8.42.0.Final</version>
    </parent>

    <groupId>org.drools</groupId>
    <artifactId>drools-wiring-api</artifactId>

    <name>Drools :: Wiring :: API</name>

    <description>
        This module defines an API for wiring classloaders and other services used in Drools.
    </description>

    <properties>
        <java.module.name>org.drools.wiring.api</java.module.name>
    </properties>

    <dependencies>
      <dependency>
        <groupId>org.kie</groupId>
        <artifactId>kie-api</artifactId>
      </dependency>
      <dependency>
        <groupId>org.kie</groupId>
        <artifactId>kie-internal</artifactId>
      </dependency>
      <dependency>
          <groupId>org.kie</groupId>
          <artifactId>kie-memory-compiler</artifactId>
      </dependency>

      <dependency>
        <groupId>org.assertj</groupId>
        <artifactId>assertj-core</artifactId>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
      </dependency>
    </dependencies>

</project>
