You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2023/04/27 15:37:03 UTC

[jmeter] branch master updated: chore: add dependency rat.mustRunAfter(:src:dist-check:copyExtraTestLibs)

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c6625ecb1 chore: add dependency rat.mustRunAfter(:src:dist-check:copyExtraTestLibs)
1c6625ecb1 is described below

commit 1c6625ecb183c7bd0d9b98f981a8bfd6e7796882
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Thu Apr 27 18:36:51 2023 +0300

    chore: add dependency rat.mustRunAfter(:src:dist-check:copyExtraTestLibs)
---
 build-logic/root-build/src/main/kotlin/build-logic.root-build.gradle.kts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build-logic/root-build/src/main/kotlin/build-logic.root-build.gradle.kts b/build-logic/root-build/src/main/kotlin/build-logic.root-build.gradle.kts
index 7cb49efd10..2e75d5e448 100644
--- a/build-logic/root-build/src/main/kotlin/build-logic.root-build.gradle.kts
+++ b/build-logic/root-build/src/main/kotlin/build-logic.root-build.gradle.kts
@@ -53,6 +53,7 @@ val rat by tasks.getting(org.nosphere.apache.rat.RatTask::class) {
     // Technically speaking, that is false positive since rat ignores *.jar files,
     // and copyLibs copies jar files only
     mustRunAfter(":src:dist:copyBinLibs", ":src:dist:copyLibs")
+    mustRunAfter(":src:dist-check:copyExtraTestLibs")
 }
 
 if (buildParameters.coverage) {