yuqi1129 commented on code in PR #5725:
URL: https://github.com/apache/gravitino/pull/5725#discussion_r1867108266
##########
clients/cli/build.gradle.kts:
##########
@@ -67,3 +67,14 @@ tasks.jar {
from(dependencies)
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
+
+tasks.test {
+ val skipITs = project.hasProperty("skipITs")
+ if (skipITs) {
+ // Exclude integration tests
+ exclude("**/integration/test/**")
+ } else {
+ dependsOn(tasks.jar)
+ dependsOn(":catalogs:catalog-jdbc-postgresql:jar",
":catalogs:catalog-jdbc-postgresql:runtimeJars")
Review Comment:
Why does it only depends on `jdbc-postgresql`,do we need to add `jdbc-mysql`
here?
--
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]