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 93fe0dda2b chore: remove use of deprecated build.isCurrentBuild
93fe0dda2b is described below

commit 93fe0dda2b9c9e6fbecef3555e08d342e78afaa4
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Mon Nov 17 14:05:40 2025 +0300

    chore: remove use of deprecated build.isCurrentBuild
---
 src/dist/build.gradle.kts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dist/build.gradle.kts b/src/dist/build.gradle.kts
index 6d87535def..c5533b6819 100644
--- a/src/dist/build.gradle.kts
+++ b/src/dist/build.gradle.kts
@@ -214,7 +214,7 @@ val verifyReleaseDependencies by tasks.registering {
         val libs = deps.asSequence()
             .filter {
                 val compId = it.id.componentIdentifier
-                compId !is ProjectComponentIdentifier || 
!compId.build.isCurrentBuild
+                compId !is ProjectComponentIdentifier
             }
             .map { it.file.name to it.file.length() }
             .sortedWith(compareBy(caseInsensitive) { it.first })

Reply via email to