vlsi commented on code in PR #5757: URL: https://github.com/apache/jmeter/pull/5757#discussion_r1071213108
########## build.gradle.kts: ########## @@ -98,6 +98,8 @@ val rat by tasks.getting(org.nosphere.apache.rat.RatTask::class) { verbose.set(true) // Note: patterns are in non-standard syntax for RAT, so we use exclude(..) instead of excludeFile exclude(rootDir.resolve(".ratignore").readLines()) + exclude("src/dist-check/temp") + dependsOn(":src:dist:copyBinLibs", ":src:dist:copyLibs") Review Comment: That is false positive. `rat` ignores `lib/**/*.jar` while `copyLibs` copies only `*.jar` files. I'm inlined to add `mustRunAfter` to silence Gradle warning. -- 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: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org