<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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.kie.server</groupId>
    <artifactId>kie-server-tests</artifactId>
    <version>7.2.0.Final</version>
  </parent>

  <artifactId>kie-server-integ-tests-custom-extension</artifactId>
  <packaging>pom</packaging>

  <name>KIE :: Execution Server :: Tests :: Custom extension</name>
  <description>KIE Execution Server Integration Tests (REST, JMS) running against custom extension.</description>

  <modules>
    <module>kie-server-integ-tests-custom-extension-services</module>
    <module>kie-server-integ-tests-custom-extension-rest</module>
    <module>kie-server-integ-tests-custom-extension-test</module>
  </modules>

  <dependencies>
    <!-- This is an artificial dependency to make sure the kie-server-tests modules are executed one at a time during
         parallel build (otherwise the tests fail because of conflicting port binding) -->
    <dependency>
      <groupId>org.kie.server</groupId>
      <artifactId>kie-server-integ-tests-jbpm-search</artifactId>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>*</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>
