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 c1ae95831a chore: make BatchTest() task abstract to make it compatible 
with further Gradle versions
c1ae95831a is described below

commit c1ae95831ae64c7411ccbd076638274d428139ff
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Thu Nov 20 10:37:13 2025 +0300

    chore: make BatchTest() task abstract to make it compatible with further 
Gradle versions
---
 .../src/main/kotlin/org/apache/jmeter/buildtools/batchtest/BatchTest.kt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/build-logic/batchtest/src/main/kotlin/org/apache/jmeter/buildtools/batchtest/BatchTest.kt
 
b/build-logic/batchtest/src/main/kotlin/org/apache/jmeter/buildtools/batchtest/BatchTest.kt
index 45291f1eb7..d1cada728d 100644
--- 
a/build-logic/batchtest/src/main/kotlin/org/apache/jmeter/buildtools/batchtest/BatchTest.kt
+++ 
b/build-logic/batchtest/src/main/kotlin/org/apache/jmeter/buildtools/batchtest/BatchTest.kt
@@ -40,7 +40,7 @@ import java.net.InetAddress
 import java.net.ServerSocket
 import javax.inject.Inject
 
-open class BatchTest @Inject constructor(objects: ObjectFactory) : JavaExec() {
+abstract class BatchTest @Inject constructor(objects: ObjectFactory) : 
JavaExec() {
     companion object {
         const val BATCH_TESTS_GROUP_NAME = "Batch test"
     }

Reply via email to