yuqi1129 commented on code in PR #11180:
URL: https://github.com/apache/gravitino/pull/11180#discussion_r3280083525
##########
build.gradle.kts:
##########
@@ -778,6 +780,11 @@ jacoco {
tasks {
val projectDir = layout.projectDirectory
val outputDir = projectDir.dir("distribution")
+ val cleanDistributionPackage by registering(Delete::class) {
+ group = "gravitino distribution"
+ delete(distributionPackageDir, distributionPackageAllDir)
Review Comment:
I prefer to clean all jars in all submodules besides the distribution
package. The result looks like the following command.
```
./gradlew clean && ./gradlew compileDistribution
```
--
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]