<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>

  <groupId>org.eximeebpms.bpm.qa.upgrade</groupId>
  <artifactId>eximeebpms-qa-db-instance-migration</artifactId>

  <packaging>pom</packaging>
  <name>EximeeBPMS - QA - upgrade - instance migration</name>

  <parent>
    <groupId>org.eximeebpms.bpm.qa</groupId>
    <artifactId>eximeebpms-qa</artifactId>
    <version>1.1.0</version>
  </parent>

  <properties>
    <jdbcBatchProcessing>true</jdbcBatchProcessing>
    <!-- the `skip-test-fixture` property is used to skip the execution of `test-fixture`
         modules for those versions that are not supported for a given database -->
    <skip-test-fixture>false</skip-test-fixture>
  </properties>

  <modules>
    <module>test-fixture-723</module>
    <module>test-fixture-724</module>
    <module>test-migration</module>
  </modules>

  <profiles>
    <profile>
      <id>cfgJdbcBatchProcessingOff</id>
      <properties>
        <jdbcBatchProcessing>false</jdbcBatchProcessing>
      </properties>
    </profile>
  </profiles>

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>sql-maven-plugin</artifactId>
          <configuration>
            <keepFormat>false</keepFormat>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>

</project>
