jerryshao commented on code in PR #10706:
URL: https://github.com/apache/gravitino/pull/10706#discussion_r3070586436
##########
build.gradle.kts:
##########
@@ -66,6 +66,10 @@ if (scalaVersion !in listOf("2.12", "2.13")) {
throw GradleException("Scala version $scalaVersion is not supported.")
}
+val skipWeb: Boolean = (project.findProperty("skipWeb") as?
String)?.toBoolean() ?: false
+val skipWebWar: Boolean = (project.findProperty("skipWebWar") as?
String)?.toBoolean() ?: false
+val skipFrontend: Boolean = skipWeb || skipWebWar
Review Comment:
Add three different properties makes things so complicated, do we have a
simple solution?
--
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]