Skip to content

Move database version profiles to individual client POMs#1640

Merged
tsegismont merged 6 commits intoeclipse-vertx:masterfrom
tsegismont:fix-ci-configs
Mar 30, 2026
Merged

Move database version profiles to individual client POMs#1640
tsegismont merged 6 commits intoeclipse-vertx:masterfrom
tsegismont:fix-ci-configs

Conversation

@tsegismont
Copy link
Copy Markdown
Member

@tsegismont tsegismont commented Mar 30, 2026

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
@tsegismont tsegismont changed the title Fix Maven profile properties not passed to MSSQL, MySQL and Oracle tests Move database version profiles to individual client POMs Mar 30, 2026
Otherwise, we don't get information about a particular database type

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
MySQL 5.6 only supports TLS 1.0/1.1 which are disabled in Java 11+

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
PostgreSQL 9 cannot infer types from NULL for BigDecimal, temporal types
(LocalTime, OffsetTime, Temporal), and their array variants. Override
these test methods to skip on PostgreSQL 9 using assumeTrue checks.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
@tsegismont
Copy link
Copy Markdown
Member Author

@vietj it seems all the issues are solved now 😌

When we get a green build, I'll merge the PR and backport to supported branches

@tsegismont tsegismont merged commit 76a5e92 into eclipse-vertx:master Mar 30, 2026
18 checks passed
@tsegismont tsegismont deleted the fix-ci-configs branch March 30, 2026 15:16
tsegismont added a commit to tsegismont/vertx-sql-client that referenced this pull request Mar 30, 2026
…tx#1640)

* Move database version profiles to individual client POMs

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Disable fail-fast in CI matrix

Otherwise, we don't get information about a particular database type

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Skip MySQLTLSTest when testing MySQL 5.6

MySQL 5.6 only supports TLS 1.0/1.1 which are disabled in Java 11+

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Make MSSQLRule work with all tested MSSQL versions

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Skip PostgreSQL 9 NULL type inference tests

PostgreSQL 9 cannot infer types from NULL for BigDecimal, temporal types
(LocalTime, OffsetTime, Temporal), and their array variants. Override
these test methods to skip on PostgreSQL 9 using assumeTrue checks.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Removed empty profiles block

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

---------

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
@tsegismont tsegismont added this to the 5.1.0 milestone Mar 30, 2026
tsegismont added a commit that referenced this pull request Mar 30, 2026
* Move database version profiles to individual client POMs

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.



* Disable fail-fast in CI matrix

Otherwise, we don't get information about a particular database type



* Skip MySQLTLSTest when testing MySQL 5.6

MySQL 5.6 only supports TLS 1.0/1.1 which are disabled in Java 11+



* Make MSSQLRule work with all tested MSSQL versions



* Skip PostgreSQL 9 NULL type inference tests

PostgreSQL 9 cannot infer types from NULL for BigDecimal, temporal types
(LocalTime, OffsetTime, Temporal), and their array variants. Override
these test methods to skip on PostgreSQL 9 using assumeTrue checks.



* Removed empty profiles block



---------

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
tsegismont added a commit to tsegismont/vertx-sql-client that referenced this pull request Mar 30, 2026
…tx#1640)

* Move database version profiles to individual client POMs

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Disable fail-fast in CI matrix

Otherwise, we don't get information about a particular database type

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Skip MySQLTLSTest when testing MySQL 5.6

MySQL 5.6 only supports TLS 1.0/1.1 which are disabled in Java 11+

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Make MSSQLRule work with all tested MSSQL versions

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Skip PostgreSQL 9 NULL type inference tests

PostgreSQL 9 cannot infer types from NULL for BigDecimal, temporal types
(LocalTime, OffsetTime, Temporal), and their array variants. Override
these test methods to skip on PostgreSQL 9 using assumeTrue checks.

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

* Removed empty profiles block

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>

---------

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
tsegismont added a commit that referenced this pull request Mar 30, 2026
* Move database version profiles to individual client POMs

Relocate database-specific testing profiles from root pom.xml to individual client modules.
CI now uses Maven's -pl/-am flags for targeted builds instead of profile-based module selection.

This commit decentralizes the Maven profile configuration, moving it from a monolithic root POM to the individual database client modules.

Some portions of this content were created with the assistance of Claude Code.



* Disable fail-fast in CI matrix

Otherwise, we don't get information about a particular database type



* Skip MySQLTLSTest when testing MySQL 5.6

MySQL 5.6 only supports TLS 1.0/1.1 which are disabled in Java 11+



* Make MSSQLRule work with all tested MSSQL versions



* Skip PostgreSQL 9 NULL type inference tests

PostgreSQL 9 cannot infer types from NULL for BigDecimal, temporal types
(LocalTime, OffsetTime, Temporal), and their array variants. Override
these test methods to skip on PostgreSQL 9 using assumeTrue checks.



* Removed empty profiles block



---------

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant