<?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">
  <parent>
    <artifactId>mule-core-modules-parent</artifactId>
    <groupId>org.mule.extensions</groupId>
    <version>1.1.9</version>
    <relativePath>pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.mule.connectors</groupId>
  <artifactId>mule-db-connector</artifactId>
  <packaging>mule-extension</packaging>
  <name>Database Connector</name>
  <version>1.16.0</version>
  <description>A Mule extension that provides functionality for connecting to Databases through the JDBC standard</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jdeps-plugin</artifactId>
        <version>3.1.2</version>
        <executions>
          <execution>
            <goals>
              <goal>jdkinternals</goal>
              <goal>test-jdkinternals</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <failOnWarning>true</failOnWarning>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.mycila</groupId>
        <artifactId>license-maven-plugin</artifactId>
        <version>${license.maven.plugin.version}</version>
        <executions>
          <execution>
            <phase>compile</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>com.mulesoft.license</groupId>
            <artifactId>license</artifactId>
            <version>${mulesoftLicenseVersion}</version>
          </dependency>
        </dependencies>
        <configuration>
          <header>${licensePath}</header>
          <properties>
            <year>${licenseYear}</year>
          </properties>
          <includes>
            <include>**/*.java</include>
          </includes>
          <mapping>
            <java>SLASHSTAR_STYLE</java>
          </mapping>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-help-plugin</artifactId>
        <version>${maven.help.plugin.version}</version>
        <executions>
          <execution>
            <id>copy-settings</id>
            <phase>process-test-resources</phase>
            <goals>
              <goal>effective-settings</goal>
            </goals>
            <configuration>
              <output>${settingsFile}</output>
              <showPasswords>true</showPasswords>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>${jacoco.version}</version>
        <executions>
          <execution>
            <id>prepare-agent</id>
            <goals>
              <goal>prepare-agent</goal>
            </goals>
          </execution>
          <execution>
            <id>merge</id>
            <phase>verify</phase>
            <goals>
              <goal>merge</goal>
            </goals>
            <configuration>
              <destFile>${session.executionRootDirectory}/target/jacoco.exec</destFile>
              <fileSets>
                <fileSet>
                  <directory>${session.executionRootDirectory}/target</directory>
                  <includes>
                    <include>*jacoco*.exec</include>
                  </includes>
                </fileSet>
              </fileSets>
            </configuration>
          </execution>
          <execution>
            <id>report</id>
            <phase>verify</phase>
            <goals>
              <goal>report</goal>
            </goals>
            <configuration>
              <dataFile>${session.executionRootDirectory}/target/jacoco.exec</dataFile>
              <outputDirectory>${session.executionRootDirectory}/target/jacoco</outputDirectory>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <destFile>${session.executionRootDirectory}/target/jacoco-java.exec</destFile>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>${maven.surefire.plugin.version}</version>
        <configuration>
          <skipTests>${skipTests}</skipTests>
          <argLine>@{argLine} -Dmaven.settings.local=${settingsFile}</argLine>
          <systemPropertyVariables>
            <oracle.db.port>${oracle.db.port}</oracle.db.port>
            <oracle.db.mtls.port>${oracle.db.mtls.port}</oracle.db.mtls.port>
            <oracle.db.mtls.port2>${oracle.db.mtls.port2}</oracle.db.mtls.port2>
            <mysql.db.port>${mysql.db.port}</mysql.db.port>
            <mssql.db.port>${mssql.db.port}</mssql.db.port>
            <fips.mode>${fips.mode}</fips.mode>
          </systemPropertyVariables>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.mule.runtime.plugins</groupId>
        <artifactId>mule-extensions-shade-plugin</artifactId>
        <version>${muleExtensionsShadeVersion}</version>
        <executions>
          <execution>
            <phase>post-integration-test</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <artifactSet>
            <includes>
              <include>org.mule.connectors:mule-db-client</include>
            </includes>
          </artifactSet>
          <relocations>
            <relocation>
              <pattern>org.mule.db.commons</pattern>
              <shadedPattern>org.mule.db.commons.shaded</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>${maven.helper.plugin.version}</version>
        <executions>
          <execution>
            <id>reserve-network-port</id>
            <phase>process-test-sources</phase>
            <goals>
              <goal>reserve-network-port</goal>
            </goals>
            <configuration>
              <portNames>
                <portName>oracle.db.port</portName>
                <portName>oracle.db.mtls.port</portName>
                <portName>oracle.db.mtls.port2</portName>
                <portName>mysql.db.port</portName>
                <portName>postgresql.db.port</portName>
                <portName>mssql.db.port</portName>
                <portName>derby.db.port</portName>
              </portNames>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>oracle</id>
      <build>
        <testResources>
          <testResource>
            <filtering>true</filtering>
            <directory>src/test/resources</directory>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>3.1.0</version>
            <executions>
              <execution>
                <id>configure-docker-platform</id>
                <phase>generate-test-resources</phase>
                <goals>
                  <goal>exec</goal>
                </goals>
                <configuration>
                  <executable>sh</executable>
                  <arguments>
                    <argument>-c</argument>
                    <argument>export DOCKER_DEFAULT_PLATFORM=linux/amd64 &amp;&amp;
                                            docker buildx use multiarch 2&gt;/dev/null || docker buildx create --name multiarch --use 2&gt;/dev/null || true</argument>
                  </arguments>
                  <environmentVariables>
                    <DOCKER_DEFAULT_PLATFORM>linux/amd64</DOCKER_DEFAULT_PLATFORM>
                    <DOCKER_CLI_EXPERIMENTAL>enabled</DOCKER_CLI_EXPERIMENTAL>
                  </environmentVariables>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>generate-test-resources</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>copy</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                  <goal>remove</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>oracle-db-mtls</name>
                  <alias>oracle-db-mtls</alias>
                  <build>
                    <dockerFileDir>${project.basedir}/src/test/resources/docker/oracle-mtls</dockerFileDir>
                    <args>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </args>
                  </build>
                  <copy>
                    <entries>
                      <entry>
                        <containerPath>/client/oracle/store</containerPath>
                        <hostDirectory>${project.build.directory}/test-classes/oracle/</hostDirectory>
                      </entry>
                      <entry>
                        <containerPath>/client/oracle/store</containerPath>
                        <hostDirectory>${project.basedir}/oracle/</hostDirectory>
                      </entry>
                    </entries>
                  </copy>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <platform>linux/amd64</platform>
                    <env>
                      <ORACLE_PASSWORD>oracleoracleoracle123</ORACLE_PASSWORD>
                      <FIPS_MODE>${fips.mode}</FIPS_MODE>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>oracle.db.port:1521</port>
                      <port>oracle.db.mtls.port:1522</port>
                      <port>oracle.db.mtls.port2:5500</port>
                    </ports>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <time>180000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
              <environmentVariables>
                <DOCKER_DEFAULT_PLATFORM>linux/amd64</DOCKER_DEFAULT_PLATFORM>
                <DOCKER_CLI_EXPERIMENTAL>enabled</DOCKER_CLI_EXPERIMENTAL>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.modules</groupId>
                <artifactId>mule-spring-module</artifactId>
                <version>${mule-spring-module-version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-beans</artifactId>
                <version>${spring-beans-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-config</artifactId>
                <version>${spring-security-config-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-core</artifactId>
                <version>${spring-security-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>${spring-context-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
                <version>${spring-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle.db.mtls.port>${oracle.db.mtls.port}</oracle.db.mtls.port>
                <oracle.db.mtls.port2>${oracle.db.mtls.port2}</oracle.db.mtls.port2>
                <fips.mode>${fips.mode}</fips.mode>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>oracle/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>com.oracle.database.jdbc</groupId>
                  <artifactId>ojdbc8</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-beans</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-config</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-core</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-context</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-core</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-oracle.exec</argLine>
                <argLine>-Dmule.tx.error.when.timeout=false</argLine>
              </argLines>
              <environmentVariables>
                <_JAVA_OPTIONS>-XX:+PrintCommandLineFlags ${mtf.javaopts}</_JAVA_OPTIONS>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <skipTests>${skipTests}</skipTests>
              <argLine>-Dmaven.settings.local=${settingsFile}</argLine>
              <systemPropertyVariables>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle.db.mtls.port>${oracle.db.mtls.port}</oracle.db.mtls.port>
                <oracle.db.mtls.port2>${oracle.db.mtls.port2}</oracle.db.mtls.port2>
                <fips.mode>${fips.mode}</fips.mode>
              </systemPropertyVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle>${oracle}</oracle>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
              <skipInvocation>${skipTita}</skipInvocation>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <properties>
        <keystore.path>oracle/store/client-keystore.jks</keystore.path>
        <truststore.path>oracle/store/client-truststore.jks</truststore.path>
        <type>jks</type>
      </properties>
    </profile>
    <profile>
      <id>oraclefips</id>
      <build>
        <testResources>
          <testResource>
            <filtering>true</filtering>
            <directory>src/test/resources</directory>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>3.1.0</version>
            <executions>
              <execution>
                <id>configure-docker-platform</id>
                <phase>generate-test-resources</phase>
                <goals>
                  <goal>exec</goal>
                </goals>
                <configuration>
                  <executable>sh</executable>
                  <arguments>
                    <argument>-c</argument>
                    <argument>export DOCKER_DEFAULT_PLATFORM=linux/amd64 &amp;&amp;
                                            docker buildx use multiarch 2&gt;/dev/null || docker buildx create --name multiarch --use 2&gt;/dev/null || true</argument>
                  </arguments>
                  <environmentVariables>
                    <DOCKER_DEFAULT_PLATFORM>linux/amd64</DOCKER_DEFAULT_PLATFORM>
                    <DOCKER_CLI_EXPERIMENTAL>enabled</DOCKER_CLI_EXPERIMENTAL>
                  </environmentVariables>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>generate-test-resources</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>copy</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                  <goal>remove</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.7</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.7</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>oracle-db-mtls</name>
                  <alias>oracle-db-mtls</alias>
                  <build>
                    <dockerFileDir>${project.basedir}/src/test/resources/docker/oracle-mtls</dockerFileDir>
                    <args>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </args>
                  </build>
                  <copy>
                    <entries>
                      <entry>
                        <containerPath>/client/oracle/store/</containerPath>
                        <hostDirectory>${project.basedir}/target/docker/oracle-db-mtls/</hostDirectory>
                      </entry>
                    </entries>
                  </copy>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <platform>linux/amd64</platform>
                    <env>
                      <ORACLE_PASSWORD>oracleoracleoracle123</ORACLE_PASSWORD>
                      <FIPS_MODE>${fips.mode}</FIPS_MODE>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>oracle.db.port:1521</port>
                      <port>oracle.db.mtls.port:1522</port>
                      <port>oracle.db.mtls.port2:5500</port>
                    </ports>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <time>90000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
              <environmentVariables>
                <DOCKER_DEFAULT_PLATFORM>linux/amd64</DOCKER_DEFAULT_PLATFORM>
                <DOCKER_CLI_EXPERIMENTAL>enabled</DOCKER_CLI_EXPERIMENTAL>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.modules</groupId>
                <artifactId>mule-spring-module</artifactId>
                <version>${mule-spring-module-version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-beans</artifactId>
                <version>${spring-beans-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-config</artifactId>
                <version>${spring-security-config-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-core</artifactId>
                <version>${spring-security-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>${spring-context-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
                <version>${spring-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle.db.mtls.port>${oracle.db.mtls.port}</oracle.db.mtls.port>
                <oracle.db.mtls.port2>${oracle.db.mtls.port2}</oracle.db.mtls.port2>
                <fips.mode>${fips.mode}</fips.mode>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>oracle/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>com.oracle.database.jdbc</groupId>
                  <artifactId>ojdbc8</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-beans</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-config</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-core</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-context</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-core</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-oracle.exec -Dmule.tx.error.when.timeout=false</argLine>
              </argLines>
              <environmentVariables>
                <_JAVA_OPTIONS>-XX:+PrintCommandLineFlags ${mtf.javaopts}</_JAVA_OPTIONS>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <skipTests>${skipTests}</skipTests>
              <argLine>-Dmaven.settings.local=${settingsFile}</argLine>
              <systemPropertyVariables>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle.db.mtls.port>${oracle.db.mtls.port}</oracle.db.mtls.port>
                <oracle.db.mtls.port2>${oracle.db.mtls.port2}</oracle.db.mtls.port2>
                <fips.mode>${fips.mode}</fips.mode>
              </systemPropertyVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <oracle.db.port>${oracle.db.port}</oracle.db.port>
                <oracle>${oracle}</oracle>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
              <skipInvocation>${skipTita}</skipInvocation>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <properties>
        <keystore.path>${project.build.directory}/docker/oracle-db-mtls/store/client-keystore.bcfks</keystore.path>
        <truststore.path>${project.build.directory}/docker/oracle-db-mtls/store/client-truststore.bcfks</truststore.path>
        <type>bcfks</type>
      </properties>
    </profile>
    <profile>
      <id>mysql</id>
      <build>
        <plugins>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>mysql:${mysql.db.version}</name>
                  <alias>mysql-${mysql.db.port}</alias>
                  <run>
                    <platform>linux/amd64</platform>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <env>
                      <MYSQL_ROOT_PASSWORD>password</MYSQL_ROOT_PASSWORD>
                      <MYSQL_DATABASE>xe</MYSQL_DATABASE>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>mysql.db.port:3306</port>
                    </ports>
                    <ulimits>
                      <ulimit>
                        <name>nofile</name>
                        <hard>10240</hard>
                        <soft>10240</soft>
                      </ulimit>
                    </ulimits>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <log>mysqld: ready for connections.</log>
                      <time>500000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-vm-connector</artifactId>
                <version>${mule.vm.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <mysql.db.port>${mysql.db.port}</mysql.db.port>
                <mssql.db.port>${mssql.db.port}</mssql.db.port>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>mysql/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>com.mysql</groupId>
                  <artifactId>mysql-connector-j</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-mysql.exec</argLine>
              </argLines>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <skipInvocation>${skipTita}</skipInvocation>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <mysql.db.port>${mysql.db.port}</mysql.db.port>
                <mysql>${mysql}</mysql>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>postgresql</id>
      <build>
        <plugins>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>postgres:latest</name>
                  <alias>postgresql-${postgresql.db.port}</alias>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <env>
                      <POSTGRES_USER>myuser</POSTGRES_USER>
                      <POSTGRES_PASSWORD>mypassword</POSTGRES_PASSWORD>
                      <POSTGRES_DB>mydatabase</POSTGRES_DB>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>${postgresql.db.port}:5432</port>
                    </ports>
                    <ulimits>
                      <ulimit>
                        <name>nofile</name>
                        <hard>10240</hard>
                        <soft>10240</soft>
                      </ulimit>
                    </ulimits>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <log>database system is ready to accept connections</log>
                      <time>500000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-dbcp2</artifactId>
                <version>${commons-dbcp2.version}</version>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-vm-connector</artifactId>
                <version>${mule.vm.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.modules</groupId>
                <artifactId>mule-spring-module</artifactId>
                <version>${mule-spring-module-version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-beans</artifactId>
                <version>${spring-beans-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-config</artifactId>
                <version>${spring-security-config-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-core</artifactId>
                <version>${spring-security-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>${spring-context-version}</version>
              </dependency>
              <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
                <version>${spring-core-version}</version>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <postgresql.db.port>${postgresql.db.port}</postgresql.db.port>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>postgresql/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>org.apache.commons</groupId>
                  <artifactId>commons-dbcp2</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.postgresql</groupId>
                  <artifactId>postgresql</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-beans</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-config</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework.security</groupId>
                  <artifactId>spring-security-core</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-context</artifactId>
                </sharedLibrary>
                <sharedLibrary>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-core</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-postgresql.exec</argLine>
              </argLines>
              <environmentVariables>
                <_JAVA_OPTIONS>-XX:+PrintCommandLineFlags ${mtf.javaopts}</_JAVA_OPTIONS>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <skipInvocation>${skipTita}</skipInvocation>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <postgresql.db.port>${postgresql.db.port}</postgresql.db.port>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>derby</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>${maven-dependency-plugin.version}</version>
            <executions>
              <execution>
                <id>copy</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
                <configuration>
                  <artifactItems>
                    <artifactItem>
                      <groupId>org.apache</groupId>
                      <artifactId>db-derby</artifactId>
                      <version>10.16.1.1</version>
                      <type>tar.gz</type>
                      <classifier>bin</classifier>
                      <overWrite>true</overWrite>
                      <outputDirectory>${project.basedir}/src/docker/derby</outputDirectory>
                    </artifactItem>
                  </artifactItems>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>fabric-derby-mtf:derby-mtf</name>
                  <alias>derby-${derby.db.port}</alias>
                  <build>
                    <contextDir>${project.basedir}/src/docker/derby</contextDir>
                  </build>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <env>
                      <DERBY_USER>myuser</DERBY_USER>
                      <DERBY_PASSWORD>mypassword</DERBY_PASSWORD>
                      <DBNAME>mydatabase</DBNAME>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>${derby.db.port}:1527</port>
                    </ports>
                    <ulimits>
                      <ulimit>
                        <name>nofile</name>
                        <hard>10240</hard>
                        <soft>10240</soft>
                      </ulimit>
                    </ulimits>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <entryPoint>java -Dderby.stream.error.field=java.lang.System.out org.apache.derby.drda.NetworkServerControl start -h  0.0.0.0</entryPoint>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-vm-connector</artifactId>
                <version>${mule.vm.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <derby.db.port>${derby.db.port}</derby.db.port>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>derby/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>org.apache.derby</groupId>
                  <artifactId>derby</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-derby.exec</argLine>
              </argLines>
              <environmentVariables>
                <_JAVA_OPTIONS>-XX:+PrintCommandLineFlags ${mtf.javaopts}</_JAVA_OPTIONS>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <skipInvocation>${skipTita}</skipInvocation>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <derby.db.port>${derby.db.port}</derby.db.port>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>mysql-old-version</id>
      <build>
        <plugins>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>mysql:latest</name>
                  <alias>mysql-old-version-container</alias>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <env>
                      <MYSQL_ROOT_PASSWORD>password</MYSQL_ROOT_PASSWORD>
                      <MYSQL_DATABASE>xe</MYSQL_DATABASE>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>mysql.db.port:3306</port>
                    </ports>
                    <ulimits>
                      <ulimit>
                        <name>nofile</name>
                        <hard>10240</hard>
                        <soft>10240</soft>
                      </ulimit>
                    </ulimits>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <log>mysqld: ready for connections.</log>
                      <time>500000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <dependencies>
        <dependency>
          <groupId>com.mysql</groupId>
          <artifactId>mysql-connector-j</artifactId>
          <version>${mysql-connector-j.version}</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
    </profile>
    <profile>
      <id>mssql</id>
      <build>
        <plugins>
          <plugin>
            <groupId>io.fabric8</groupId>
            <artifactId>docker-maven-plugin</artifactId>
            <version>${docker.maven.plugin.version}</version>
            <executions>
              <execution>
                <id>start</id>
                <phase>test-compile</phase>
                <goals>
                  <goal>build</goal>
                  <goal>start</goal>
                </goals>
                <configuration>
                  <showLogs>true</showLogs>
                  <logStdout>true</logStdout>
                </configuration>
              </execution>
              <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>2.0.17</version>
              </dependency>
              <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>jcl-over-slf4j</artifactId>
                <version>2.0.17</version>
              </dependency>
            </dependencies>
            <configuration>
              <images>
                <image>
                  <name>mcr.microsoft.com/mssql/server:2019-latest</name>
                  <alias>mssql-container</alias>
                  <run>
                    <containerNamePattern>%n-%i-%t</containerNamePattern>
                    <env>
                      <SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
                      <ACCEPT_EULA>Y</ACCEPT_EULA>
                      <MULE_SECURITY_MODEL>${mule.security.model}</MULE_SECURITY_MODEL>
                    </env>
                    <ports>
                      <port>mssql.db.port:1433</port>
                    </ports>
                    <ulimits>
                      <ulimit>
                        <name>nofile</name>
                        <hard>10240</hard>
                        <soft>10240</soft>
                      </ulimit>
                    </ulimits>
                    <log>
                      <enabled>true</enabled>
                    </log>
                    <wait>
                      <log>Service Broker manager has started.</log>
                      <time>500000</time>
                    </wait>
                  </run>
                </image>
              </images>
              <verbose>true</verbose>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-extensions-maven-plugin</artifactId>
            <version>${munit.extensions.maven.plugin.version}</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-runner</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>munit-tools</artifactId>
                <version>${munit.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>com.mulesoft.munit</groupId>
                <artifactId>mtf-tools</artifactId>
                <version>${mtf.tools.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-vm-connector</artifactId>
                <version>${mule.vm.version}</version>
                <classifier>mule-plugin</classifier>
              </dependency>
              <dependency>
                <groupId>org.mule.connectors</groupId>
                <artifactId>mule-file-connector</artifactId>
                <version>1.5.2</version>
                <classifier>mule-plugin</classifier>
              </dependency>
            </dependencies>
            <configuration>
              <munitFailIfNoTests>false</munitFailIfNoTests>
              <minMuleVersionConfig>CONNECTOR</minMuleVersionConfig>
              <systemPropertyVariables>
                <mssql.db.port>${mssql.db.port}</mssql.db.port>
                <ignore.metadata.test.schema.generation>${ignore.metadata.test.schema.generation}</ignore.metadata.test.schema.generation>
              </systemPropertyVariables>
              <munitTest>mssql/.*.xml</munitTest>
              <runtimeConfiguration>
                <discoverRuntimes>
                  <product>EE</product>
                  <minMuleVersion>${minVersion}</minMuleVersion>
                  <includeSnapshots>false</includeSnapshots>
                </discoverRuntimes>
              </runtimeConfiguration>
              <sharedLibraries>
                <sharedLibrary>
                  <groupId>com.microsoft.sqlserver</groupId>
                  <artifactId>mssql-jdbc</artifactId>
                </sharedLibrary>
              </sharedLibraries>
              <argLines>
                <argLine>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco-mssql.exec</argLine>
              </argLines>
              <environmentVariables>
                <_JAVA_OPTIONS>-XX:+PrintCommandLineFlags ${mtf.javaopts}</_JAVA_OPTIONS>
              </environmentVariables>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-invoker-plugin</artifactId>
            <version>3.3.0</version>
            <executions>
              <execution>
                <id>tita-tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
            <configuration>
              <debug>false</debug>
              <streamLogs>true</streamLogs>
              <noLog>true</noLog>
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
              <skipInvocation>${skipTita}</skipInvocation>
              <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
              </pomIncludes>
              <properties>
                <maven.settings.local>${settingsFile}</maven.settings.local>
                <mssql.db.port>${mssql.db.port}</mssql.db.port>
              </properties>
              <goals>
                <goal>clean</goal>
                <goal>generate-sources</goal>
                <goal>test</goal>
              </goals>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <repositories>
    <repository>
      <id>mule</id>
      <name>Mule Repository</name>
      <url>https://repository.mulesoft.org/nexus/content/repositories/public/</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>mule-plugin</id>
      <name>Mule Repository</name>
      <url>https://repository.mulesoft.org/nexus/content/repositories/public/</url>
    </pluginRepository>
  </pluginRepositories>
  <dependencies>
    <dependency>
      <groupId>org.mule.sdk</groupId>
      <artifactId>mule-sdk-api</artifactId>
      <version>0.8.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.18.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.mchange</groupId>
      <artifactId>c3p0</artifactId>
      <version>0.12.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.17.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-collections4</artifactId>
      <version>4.5.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>jakarta.transaction</groupId>
      <artifactId>jakarta.transaction-api</artifactId>
      <version>1.3.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.experlog</groupId>
      <artifactId>xapool</artifactId>
      <version>1.5.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>33.4.8-jre</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>failureaccess</artifactId>
      <version>1.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.bytebuddy</groupId>
      <artifactId>byte-buddy</artifactId>
      <version>1.14.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>4.7.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy-agent</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mule.tests</groupId>
      <artifactId>mule-tests-unit</artifactId>
      <version>4.1.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mule-module-logging</artifactId>
          <groupId>org.mule.runtime</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mule-tests-model</artifactId>
          <groupId>org.mule.tests</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest</artifactId>
      <version>2.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.tests.plugin</groupId>
      <artifactId>mule-tests-component-plugin</artifactId>
      <version>4.1.1</version>
      <classifier>mule-plugin</classifier>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>mule-core-deprecated-schema-plugin</artifactId>
          <groupId>org.mule.tests.plugin</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>commons-dbutils</groupId>
      <artifactId>commons-dbutils</artifactId>
      <version>1.8.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.mchange</groupId>
      <artifactId>mchange-commons-java</artifactId>
      <version>0.4.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>xmlunit</groupId>
      <artifactId>xmlunit</artifactId>
      <version>1.6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.14.2.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.mysql</groupId>
      <artifactId>mysql-connector-j</artifactId>
      <version>8.0.33</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.microsoft.sqlserver</groupId>
      <artifactId>mssql-jdbc</artifactId>
      <version>7.0.0.jre8</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.oracle.database.jdbc</groupId>
      <artifactId>ojdbc8</artifactId>
      <version>23.2.0.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <version>42.7.11</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.awaitility</groupId>
      <artifactId>awaitility</artifactId>
      <version>3.1.6</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-library</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>jakarta.xml.bind</groupId>
      <artifactId>jakarta.xml.bind-api</artifactId>
      <version>2.3.3</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>jakarta.activation-api</artifactId>
          <groupId>jakarta.activation</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-impl</artifactId>
      <version>2.3.9</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-xjc</artifactId>
      <version>2.3.9</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.istack</groupId>
      <artifactId>istack-commons-runtime</artifactId>
      <version>3.0.12</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.services</groupId>
      <artifactId>mule-service-scheduler</artifactId>
      <version>1.1.11</version>
      <classifier>mule-service</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.qameta.allure</groupId>
      <artifactId>allure-junit4</artifactId>
      <version>2.0-BETA17</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>allure-java-commons</artifactId>
          <groupId>io.qameta.allure</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-extensions-api</artifactId>
      <version>1.1.5</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-api</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-core</artifactId>
      <version>4.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-module-extensions-spring-support</artifactId>
      <version>4.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-extension-ast-loader</artifactId>
      <version>1.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-metadata-model-xml</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-metadata-model-java</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-metadata-model-json</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.runtime</groupId>
      <artifactId>mule-module-service</artifactId>
      <version>4.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.mule.services</groupId>
      <artifactId>mule-service-weave</artifactId>
      <version>2.1.2</version>
      <classifier>mule-service</classifier>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>mail</artifactId>
          <groupId>javax.mail</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mule.tests</groupId>
      <artifactId>mule-tests-functional</artifactId>
      <version>4.1.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>mule-module-service</artifactId>
          <groupId>org.mule.runtime</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mule-module-artifact</artifactId>
          <groupId>org.mule.runtime</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mule-tests-model</artifactId>
          <groupId>org.mule.tests</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mule.tests</groupId>
      <artifactId>mule-tests-runner</artifactId>
      <version>4.1.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>mule-maven-client-api</artifactId>
          <groupId>org.mule</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mule-maven-client-impl</artifactId>
          <groupId>org.mule</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <distributionManagement>
    <repository>
      <id>mule-releases</id>
      <name>Mule Release Repository</name>
      <url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url>
    </repository>
    <snapshotRepository>
      <uniqueVersion>false</uniqueVersion>
      <id>mule-snapshots</id>
      <name>Mule Snapshot Repository</name>
      <url>https://repository-master.mulesoft.org/nexus/content/repositories/snapshots</url>
    </snapshotRepository>
    <downloadUrl>http://www.mulesoft.org/display/MULE/Download</downloadUrl>
  </distributionManagement>
  <properties>
    <licenseYear>2023</licenseYear>
    <settingsFile>${java.io.tmpdir}/effective-settings.xml</settingsFile>
    <spring-core-version>5.3.31</spring-core-version>
    <com.sun.istack.version>3.0.12</com.sun.istack.version>
    <oracle.driver.version>23.2.0.0</oracle.driver.version>
    <junit.version>4.13.2</junit.version>
    <awaitility.version>3.1.6</awaitility.version>
    <mysql.db.version>8.0</mysql.db.version>
    <c3p0Version>0.12.0</c3p0Version>
    <maven.helper.plugin.version>3.3.0</maven.helper.plugin.version>
    <muleDbClientVersion>1.9.1</muleDbClientVersion>
    <mule.security.model>default</mule.security.model>
    <jakarta.transaction.version>1.3.3</jakarta.transaction.version>
    <munit.version>3.7.0</munit.version>
    <mchange-commons-java.version>0.4.0</mchange-commons-java.version>
    <skipTita>false</skipTita>
    <spring-security-config-version>5.8.16</spring-security-config-version>
    <mssqlVersion>7.0.0.jre8</mssqlVersion>
    <commonsIoVersion>2.17.0</commonsIoVersion>
    <formatterConfigPath>formatter.xml</formatterConfigPath>
    <munit.extensions.maven.plugin.version>1.7.0</munit.extensions.maven.plugin.version>
    <spring-security-core-version>5.8.16</spring-security-core-version>
    <commons-dbcp2.version>2.9.0</commons-dbcp2.version>
    <mule-spring-module-version>1.3.11</mule-spring-module-version>
    <muleExtensionsShadeVersion>1.0.4</muleExtensionsShadeVersion>
    <mule.sdk.api.version>0.8.0</mule.sdk.api.version>
    <xmlunit.version>1.6</xmlunit.version>
    <sonar.cpd.exclusions>**/RowListenerQuerySettings.java</sonar.cpd.exclusions>
    <jacoco.version>0.8.14</jacoco.version>
    <hamcrest.version>2.2</hamcrest.version>
    <skipTests>false</skipTests>
    <commons.lang.version>3.18.0</commons.lang.version>
    <ignore.metadata.test.schema.generation>true</ignore.metadata.test.schema.generation>
    <mulesoftLicenseVersion>1.4.0</mulesoftLicenseVersion>
    <spring-context-version>5.3.31</spring-context-version>
    <mysql-connector-j.version>8.0.33</mysql-connector-j.version>
    <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
    <mule.vm.version>2.0.1</mule.vm.version>
    <postgresql.version>42.7.11</postgresql.version>
    <derbyVersion>10.14.2.0</derbyVersion>
    <licensePath>LICENSE_HEADER_CPAL.txt</licensePath>
    <docker.maven.plugin.version>0.48.0</docker.maven.plugin.version>
    <commonsDbUtilsVersion>1.8.0</commonsDbUtilsVersion>
    <maven-replacer-plugin.version>1.5.3</maven-replacer-plugin.version>
    <net.bytebuddy.version>1.14.5</net.bytebuddy.version>
    <license.maven.plugin.version>4.2</license.maven.plugin.version>
    <guava.failureaccess.version>1.0.3</guava.failureaccess.version>
    <maven.help.plugin.version>3.3.0</maven.help.plugin.version>
    <spring-beans-version>5.3.31</spring-beans-version>
    <commons-collections4.version>4.5.0</commons-collections4.version>
    <mtf.tools.version>1.2.0</mtf.tools.version>
    <com.sun.xml.bind.version>2.3.9</com.sun.xml.bind.version>
    <guava.version>33.4.8-jre</guava.version>
    <xaPoolVersion>1.5.0</xaPoolVersion>
    <fips.mode>false</fips.mode>
    <jakarta.xml.bind.api.version>2.3.3</jakarta.xml.bind.api.version>
    <mockito-core.version>4.7.0</mockito-core.version>
  </properties>
</project>
