jerryshao commented on code in PR #5786:
URL: https://github.com/apache/gravitino/pull/5786#discussion_r1897128087


##########
authorizations/build.gradle.kts:
##########
@@ -17,6 +17,18 @@
  * under the License.
  */
 
-tasks.all {
-    enabled = false
-}
\ No newline at end of file
+tasks {
+  test {
+    subprojects.forEach {
+      dependsOn(":${project.name}:${it.name}:test")
+    }
+  }
+
+  register("copyLibAndConfig", Copy::class) {
+    subprojects.forEach {
+      if (!it.name.startsWith("authorization-common")) {
+        dependsOn(":${project.name}:${it.name}:copyLibAndConfig")
+      }
+    }
+  }
+}

Review Comment:
   Do we need these codes? I found that each module already has these tasks.



-- 
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]

Reply via email to