This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 4_0_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit c2807c3141903722b93cbad1730e5b47c44c472c Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Fri May 2 11:56:44 2025 +0200 Upgrading TestContainers for GHA --- pom.xml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/pom.xml b/pom.xml index 0ff0de6bbe..35a5a52c20 100644 --- a/pom.xml +++ b/pom.xml @@ -473,6 +473,8 @@ under the License. <curator.version>5.8.0</curator.version> <zookeeper.version>3.9.3</zookeeper.version> + <testcontainers.version>1.21.0</testcontainers.version> + <zonky.embedded-postgres.version>2.1.0</zonky.embedded-postgres.version> <zonky.embedded-postgres-binaries.version>17.4.0</zonky.embedded-postgres-binaries.version> @@ -1319,6 +1321,49 @@ under the License. <version>1.20.1</version> </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>testcontainers</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>jdbc</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>database-commons</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>mysql</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>mariadb</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>oracle-free</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>openfga</artifactId> + <version>${testcontainers.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId>
