FANNG1 opened a new issue, #7872: URL: https://github.com/apache/gravitino/issues/7872
### Describe the subtask The background is in #7824 , this issue tracks moving postgre integration test to separate module `:integrate-test:catalogs:catalog-jdbc-postgre-it`, please refer to what is done for `catalog-model-it` in https://github.com/apache/gravitino/pull/7832/files#diff-e6cf02ef44c461bac315bdebaca7a50e3d99bb68e955b4873f99d1ac8d81d4c4 The most important is that new IT could't directly rely on server-side modules (`:server`, `:catalogs:`) which is JDK 17 compatibility. could add dependencies when the test mode is embedded in `build.gradle.kts` like this: ```kotlin val isTestModeEmbedded = rootProject.extra["isTestModeEmbedded"] as Boolean dependencies { if (isTestModeEmbedded) { testImplementation(project(":server")) } } ``` ### Parent issue #7824 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
